forked from adamayres/gulp-filelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
45
{
"name": "gulp-filelog",
"version": "0.2.0",
"description": "A gulp plugin that logs out the file names in the stream. Displays a count and if empty. Useful for debugging.",
"keywords": [
"gulpplugin", "filelog", "debug", "count", "empty", "log", "gulp"
],
"homepage": "https://github.com/adamayres/gulp-filelog",
"bugs": "https://github.com/adamayres/gulp-filelog/issues",
"author": {
"name": "Adam Ayres",
"email": "[email protected]",
"url": "https://github.com/adamayres"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/adamayres/gulp-filelog.git"
},
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"through2": "*",
"gulp-util": "~2.2.0"
},
"devDependencies": {
"mocha": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul": "*",
"event-stream": "*",
"should": "~2.1.0"
},
"engines": {
"node": ">=0.9.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
]
}