forked from shama/webpack-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
{
"name": "webpack-stream",
"version": "5.2.1",
"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": ">= 6.11.5"
},
"scripts": {
"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.4.1",
"plugin-error": "^1.0.1",
"supports-color": "^5.5.0",
"through": "^2.3.8",
"vinyl": "^2.1.0",
"webpack": "^4.26.1"
},
"devDependencies": {
"gulp": "^3.9.0",
"rimraf": "^2.4.4",
"semistandard": "^13.0.1",
"tape": "^4.9.0",
"vinyl-fs": "^3.0.2",
"vinyl-named": "^1.1.0"
},
"keywords": [
"gulpplugin",
"webpack",
"stream"
]
}