-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "webpack-manifest-replace-plugin",
"version": "2.0.0",
"description": "Webpack plugin to replace assets path using manifest file.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"lint": "eslint --cache src",
"pretest": "rimraf test/js && npm run build",
"prepare": "husky install",
"test": "mocha"
},
"license": "MIT",
"repository": "unchai/webpack-manifest-replace-plugin",
"author": "Jaehyeon Nam @unchai",
"homepage": "https://github.com/unchai/webpack-manifest-replace-plugin",
"bugs": "https://github.com/unchai/webpack-manifest-replace-plugin/issues",
"contributors": [
"jymoon"
],
"keywords": [
"webpack",
"plugin",
"manifest",
"replace"
],
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"core-js": "^3.19.1",
"glob": "^7.2.0",
"path": "^0.12.7"
},
"engines": {
"node": ">= 10.13.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"webpack": "^5.64.2"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
]
}
}