forked from shama/webpack-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.19 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
{
"name": "webpack-stream",
"version": "6.1.2",
"description": "Run webpack as a stream",
"license": "MIT",
"homepage": "https://github.com/shama/webpack-stream",
"repository": "shama/webpack-stream",
"author": {
"name": "Kyle Robinson Young",
"email": "kyle@dontkry.com",
"url": "http://dontkry.com"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"start": "gulp",
"debug": "node --inspect-brk ./node_modules/.bin/gulp",
"test": "semistandard && node test/test.js"
},
"files": [
"index.js"
],
"semistandard": {
"ignore": [
"test/fixtures",
"examples"
]
},
"dependencies": {
"fancy-log": "^1.3.3",
"lodash.clone": "^4.3.2",
"lodash.some": "^4.2.2",
"memory-fs": "^0.5.0",
"plugin-error": "^1.0.1",
"supports-color": "^8.1.1",
"through": "^2.3.8",
"vinyl": "^2.2.1"
},
"devDependencies": {
"gulp": "^4.0.2",
"rimraf": "^3.0.2",
"semistandard": "^16.0.1",
"tape": "^5.3.1",
"vinyl-fs": "^3.0.2",
"vinyl-named": "^1.1.0",
"webpack": "^5.21.2"
},
"peerDependencies": {
"webpack": "^5.21.2"
},
"keywords": [
"gulpplugin",
"webpack",
"stream"
]
}