forked from 1337programming/webpack-shell-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "webpack-shell-plugin",
"version": "0.5.0",
"description": "Run shell commands before and after webpack builds",
"main": "lib/index.js",
"scripts": {
"test": "webpack",
"test:dev": "webpack-dev-server --progress",
"build": "rollup -c",
"webpack": "webpack --progress",
"webpack-dev-server": "webpack-dev-server --progress",
"lint": "eslint src/webpack-shell-plugin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/1337programming/webpack-shell-plugin.git"
},
"keywords": [
"webpack",
"shell",
"plugin",
"shell",
"serve",
"hmr",
"browser",
"script",
"opie",
"manion",
"1337"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/1337programming/webpack-shell-plugin/issues"
},
"homepage": "https://github.com/1337programming/webpack-shell-plugin",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-preset-es2015-rollup": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"rollup": "^0.25.8",
"rollup-plugin-babel": "^2.4.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"dependencies": {
"prettier": "^2.5.1"
}
}