-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "webpack-shell-plugin-next",
"version": "2.3.2",
"description": "Run shell commands before and after webpack builds",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib && rimraf dist",
"test": "./node_modules/.bin/jest --config ./jest.config.ts",
"test:watch": "webpack --watch",
"test:dev": "webpack-dev-server --progress",
"test:local": "webpack",
"prepublish": "npm run clean && npm run build",
"prepare": "npm run build",
"build": "tsc",
"webpack": "webpack --progress --mode production",
"webpack-dev-server": "webpack-dev-server --progress",
"lint": "tslint --project tsconfig.json ./src/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"pre-commit": [
"test",
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/s00d/webpack-shell-plugin-next.git"
},
"keywords": [
"webpack",
"shell",
"plugin",
"shell",
"serve",
"hmr",
"browser",
"script",
"opie",
"manion",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/s00d/webpack-shell-plugin-next/issues"
},
"homepage": "https://github.com/s00d/webpack-shell-plugin-next",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.14",
"@types/source-map": "^0.5.7",
"css-loader": "^6.11.0",
"jest": "^29.7.0",
"module-alias": "^2.2.3",
"rimraf": "^6.0.1",
"source-map": "^0.7.4",
"standardx": "^7.0.0",
"style-loader": "^3.3.4",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.9.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"webpack": "^5.18.0"
}
}