-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "webpack-hook-plugin",
"version": "1.0.7",
"description": "Run shell commands before and after webpack builds",
"main": "dist/webpack-hook-plugin.umd.js",
"module": "dist/webpack-hook-plugin.es5.js",
"typings": "dist/types/webpack-hook-plugin.d.ts",
"scripts": {
"clean": "rimraf dist",
"test": "webpack --mode development",
"test:dev": "npm run webpack-dev-server",
"build": "npm run build:tsc && rollup -c rollup.config.ts",
"build:tsc": "tsc --module commonjs",
"webpack": "webpack --progress",
"webpack-dev-server": "webpack-dev-server --progress",
"deploy": "npm run clean && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/tienne/webpack-hook-plugin.git"
},
"keywords": [
"webpack",
"shell",
"plugin",
"shell",
"serve",
"hmr",
"browser",
"script",
"opie",
"manion"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tienne/webpack-hook-plugin/issues"
},
"homepage": "https://github.com/tienne/webpack-hook-plugin",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/node": "^12.0.0",
"@types/webpack": "^4.4.31",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"lodash": "^4.17.11",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.21.0",
"style-loader": "^0.23.1",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5",
"webpack": "^4.22.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}