forked from cjroth/gulp-filelist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 999 Bytes
/
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
{
"name": "gulp-filelist",
"description": "Convert list of file paths in current stream to a JSON file.",
"version": "0.1.1",
"author": "Chris Roth <[email protected]>",
"bugs": "https://github.com/cjroth/gulp-filelist/issues",
"dependencies": {
"through": "^2.3.4",
"vinyl": "^0.4.2"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"engines": {
"node": ">= 0.8"
},
"homepage": "https://github.com/cjroth/gulp-filelist/",
"keywords": [
"gulp",
"gulpplugin"
],
"license": "MIT",
"main": "index.js",
"repository": "https://github.com/cjroth/gulp-filelist.git",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks --require should test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks --require should test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --require should test/"
}
}