-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 949 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
{
"name": "@vergiss/auto-rebuild-dll-plugin",
"version": "0.1.0",
"description": "A Webpack plugin for rebuilding dll library",
"main": "lib/index.js",
"scripts": {
"cleanup": "del-cli ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run cleanup && babel src --out-dir lib",
"build:watch": "npm run cleanup && babel src --out-dir lib --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"webpack"
],
"author": "coma",
"license": "ISC",
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"del": "^3.0.0",
"find-cache-dir": "^1.0.0",
"lodash": "^4.17.4",
"make-dir": "^1.0.0",
"read-pkg": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"del-cli": "^1.1.0",
"recursive-readdir": "^2.2.1"
}
}