-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "piped-webpack",
"version": "1.4.1",
"description": "Run webpack through a stream interface",
"main": "index.js",
"scripts": {
"test": "mocha",
"check-style": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/whs/piped-webpack.git"
},
"keywords": [
"gulpplugin",
"webpack"
],
"author": "Manatsawin Hanmongkolchai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/whs/piped-webpack/issues"
},
"homepage": "https://github.com/whs/piped-webpack#readme",
"dependencies": {
"duplexify": "^3.5.0",
"gulp-util": "^3.0.8",
"lodash.clone": "^4.5.0",
"memory-fs": "^0.4.1",
"memory-fs-stream": "^1.0.0",
"readable-stream": "^2.3.3"
},
"peerDependencies": {
"webpack": "*"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^4.1.1",
"mocha": "^3.4.2",
"webpack": "^3.0.0"
}
}