forked from cjroth/gulp-filelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gulp-filelist",
"description": "Output list of files in current stream to JSON file or custom format.",
"version": "1.0.0",
"author": {
"name": "Chris Roth",
"url": "https://github.com/cjroth",
"email": "[email protected]"
},
"contributors": [{
"name": "Alex DeJarnatt",
"url": "https://github.com/alexdej"
}, {
"name": "Andrea Paciolla",
"email": "[email protected]",
"url": "https://github.com/AndreaPaciolla"
}, {
"name": "Bach Ly",
"url": "https://github.com/bachly"
}, {
"name": "Colm McBarron",
"url": "https://github.com/ColmMcBarron"
}, {
"name": "Florian Wendelborn",
"email": "[email protected]",
"url": "https://github.com/dodekeract"
}, {
"name": "Ian Renyard",
"url": "https://github.com/renyard"
}, {
"name": "Maxwell Barvian",
"email": "[email protected]",
"url": "https://github.com/barvian"
}, {
"name": "Paul Apostol",
"url": "https://github.com/devel-pa"
}, {
"name": "Paul Welsh",
"email": "[email protected]",
"url": "https://github.com/spacedawwwg"
}, {
"name": "Sebastián González",
"url": "https://github.com/tagae"
}],
"bugs": "https://github.com/cjroth/gulp-filelist/issues",
"dependencies": {
"gulp-util": "^3.0.7",
"path": "^0.12.7",
"through2": "^2.0.0",
"vinyl": "^1.1.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"engines": {
"node": ">= 0.8"
},
"homepage": "https://github.com/cjroth/gulp-filelist/",
"keywords": [
"gulp",
"gulpplugin",
"extension",
"absolute",
"path",
"combine",
"json"
],
"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/"
}
}