-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
112 lines (112 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gulp-filelist",
"description": "Output list of files in current stream to JSON file or custom format.",
"version": "2.0.5",
"author": {
"name": "Chris Roth",
"url": "https://github.com/cjroth",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alex DeJarnatt",
"url": "https://github.com/alexdej"
},
{
"name": "Andre Lewis",
"email": "[email protected]",
"url": "https://github.com/mrmowgli"
},
{
"name": "Andrea Paciolla",
"email": "[email protected]",
"url": "https://github.com/AndreaPaciolla"
},
{
"name": "Bach Ly",
"url": "https://github.com/bachly"
},
{
"name": "chewiebug",
"url": "https://github.com/chewiebug"
},
{
"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": "Niko Salminen",
"email": "[email protected]",
"url": "https://github.com/Kaivosukeltaja"
},
{
"name": "Ole Bjørn Michelsen",
"url": "https://github.com/omichelsen"
},
{
"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"
},
{
"name": "Vlad Bondarenko",
"url": "https://github.com/treago"
}
],
"bugs": "https://github.com/cjroth/gulp-filelist/issues",
"dependencies": {
"minimatch": "^3.0.4",
"plugin-error": "^1.0.1",
"through2": "^4.0.2",
"vinyl": "^2.2.1"
},
"devDependencies": {
"gulp": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"should": "^13.2.3"
},
"engines": {
"node": ">= 10"
},
"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/"
}
}