forked from the-simian/gulp-concat-filenames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@fomantic/gulp-concat-filenames",
"description": "Similar to concat, but creates a file with a list of filenames,not file contents.",
"version": "1.2.1",
"homepage": "http://jesseharlin.net",
"repository": "https://github.com/fomantic/gulp-concat-filenames",
"author": "the-simian <harlinjesse@gmail.com>",
"contributors": [{
"name" : "Jesse Harlin",
"email" : "harlinjesse@gmail.com"
}, {
"name" : "Noam Youngerman",
"email" : "noam@younger.mn"
}, {
"name" : "Rainfore Zhao",
"email" : "rainforest92@126.com"
}],
"main": "./index.js",
"keywords": [
"gulpplugin",
"gulpfriendly",
"concat filenames",
"gulp"
],
"dependencies": {
"plugin-error": "^2.0.0",
"through": "^2.3.8",
"vinyl": "^3.0.0"
},
"typings": "index.d.ts",
"devDependencies": {
"chai": "^4.3.6",
"gulp": "^5.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^14.0.1",
"sinon-chai": "^3.7.0",
"stream-assert": "^2.0.3"
},
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"engineStrict": true,
"engines": {
"node": ">= 12"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/the-simian/gulp-concat-filenames/blob/master/license.txt"
}
]
}