-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "@chipzhang/webpack-asset-attributes-plugin",
"version": "0.1.1",
"description": "Add custom attributes to the asset tags in the generated HTML by html-webpack-plugin",
"keywords": [
"webpack",
"plugin",
"webpack-plugin",
"html-webpack-plugin"
],
"homepage": "https://github.com/chipzhang/webpack-asset-attributes-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/chipzhang/webpack-asset-attributes-plugin"
},
"bugs": {
"url": "https://github.com/chipzhang/webpack-asset-attributes-plugin/issues"
},
"author": "Chip Zhang <[email protected]> (https://github.com/chipzhang)",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=12.0.0"
},
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier": "prettier --write .",
"compile": "tsc -p tsconfig.json",
"example:start": "webpack serve --config example/webpack.dev.config.js",
"example:build": "webpack --config example/webpack.prod.config.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/eslint-plugin": "^7.13.16",
"@chipzhang/eslint-config": "^0.1.2",
"@chipzhang/prettier-config": "^0.1.2",
"@chipzhang/tsconfig": "^0.1.6",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"prettier": "2.3.0",
"typescript": "4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0",
"html-webpack-plugin": "^4.0.0 || ^5.0.0"
}
}