-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
73
74
75
76
77
78
79
{
"name": "multi-env-html-webpack-plugin",
"version": "1.0.0-beta.8",
"description": "generate multiples indexs by environments",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"lint": "eslint --fix **/*.{ts,jsx,js,vue} & npm run format",
"format": "npx prettier --write .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "npx jest",
"doc": "npx typedoc src/index.ts",
"prepublish": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "[email protected]:wxwzl/multi-env-html-webpack-plugin.git"
},
"typings": "dist/index.d.ts",
"keywords": [
"webpack",
"plugin",
"muiltIndex",
"environments"
],
"author": "wxwzl",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/cheerio": "^0.22.30",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.0",
"@types/webpack": "4.41.26",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"path": "^0.12.7",
"prettier": "^2.3.2",
"rollup": "^2.53.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"tslib": "^2.3.0",
"typedoc": "0.21.9",
"typedoc-plugin-markdown": "3.10.4",
"typescript": "^4.3.5",
"webpack": "4.46.0"
},
"dependencies": {
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0"
}
}