forked from gulpjs/glob-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "glob-stream",
"description": "File system globs as a stream",
"version": "5.2.0",
"repository": "wearefractal/glob-stream",
"author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
"files": [
"index.js"
],
"dependencies": {
"extend": "^3.0.0",
"glob": "^5.0.3",
"glob-parent": "^2.0.0",
"micromatch": "^2.3.0",
"ordered-read-streams": "^0.3.0",
"through2": "^0.6.0",
"to-absolute-glob": "^0.1.1",
"unique-stream": "^2.0.2"
},
"devDependencies": {
"coveralls": "^2.11.2",
"eslint": "^1.7.3",
"eslint-config-gulp": "^2.0.0",
"istanbul": "^0.3.0",
"istanbul-coveralls": "^1.0.1",
"jscs": "^2.3.5",
"jscs-preset-gulp": "^1.0.0",
"mocha": "^2.0.0",
"mocha-lcov-reporter": "^0.0.2",
"rimraf": "^2.2.5",
"should": "^7.1.0",
"stream-sink": "^1.2.0"
},
"scripts": {
"lint": "eslint . && jscs *.js test/",
"pretest": "npm run lint",
"test": "mocha",
"coveralls": "istanbul cover _mocha --report lcovonly && istanbul-coveralls"
},
"engines": {
"node": ">= 0.9"
},
"license": "MIT"
}