forked from shama/webpack-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.1 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": "webpack-stream-fixed",
"version": "3.2.2",
"description": "Run webpack as a stream",
"license": "MIT",
"homepage": "https://github.com/jeroennoten/webpack-stream",
"repository": "jeroennoten/webpack-stream",
"author": {
"name": "Kyle Robinson Young",
"email": "[email protected]",
"url": "http://dontkry.com"
},
"contributors": [{
"name": "Jeroen Noten",
"email": "[email protected]"
}],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "semistandard && node test/test.js"
},
"files": [
"index.js"
],
"semistandard": {
"ignore": [
"test/fixtures",
"examples"
]
},
"dependencies": {
"gulp-util": "^3.0.7",
"lodash.clone": "^4.3.2",
"lodash.some": "^4.2.2",
"memory-fs": "^0.3.0",
"through": "^2.3.8",
"vinyl": "^1.1.0",
"webpack": "^1.12.9"
},
"devDependencies": {
"gulp": "^3.9.0",
"rimraf": "^2.4.4",
"semistandard": "^7.0.4",
"tape": "^4.2.2",
"vinyl-fs": "^2.2.1",
"vinyl-named": "^1.1.0"
},
"keywords": [
"gulpplugin",
"webpack",
"stream"
]
}