-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "replace-url-html-webpack-plugin",
"version": "2.0.1",
"description": "Updates the URLs for existing script (JS) and link (CSS) elements in an HTML template with URLs generated by Webpack",
"keywords": [
"webpack",
"html-webpack-plugin",
"plugin",
"replace",
"update",
"transform",
"inject",
"asset",
"script",
"link",
"js",
"css"
],
"author": "BTOdell",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/BTOdell/replace-url-html-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/BTOdell/replace-url-html-webpack-plugin/issues"
},
"homepage": "https://github.com/BTOdell/replace-url-html-webpack-plugin",
"main": "index.js",
"files": [
"*.js",
"*.d.ts"
],
"devDependencies": {
"@types/webpack": "^4.41.13",
"html-webpack-plugin": "^4.3.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"webpack": "^4.0.0",
"html-webpack-plugin": "^4.0.0"
},
"scripts": {
"prepublishOnly": "tsc -p .",
"build": "tsc -p . && tsc -p ./test",
"test": "npm run lint && npm run build && webpack --config test/test.js",
"lint": "tslint --project .",
"clean": "run-p -cs clean:*",
"clean:index": "shx rm -rf ./*.js ./*.js.map ./*.d.ts",
"clean:test": "shx rm -rf ./test/*.js ./test/*.js.map ./test/*.d.ts ./test-dist",
"clean-nm": "npx shx rm -rf ./node_modules",
"clean-all": "run-s -cs clean clean-nm"
},
"engines": {
"node": ">=6.11.5"
}
}