-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "webpack-theme-color-replacer",
"version": "1.5.1",
"description": "A webpack plugin designed to dynamicly change the theme colors at runtime. 实现运行时快速动态替换主题色的webpack插件. ",
"main": "src/index.js",
"module": "client/index.js",
"scripts": {
"test": "node test/nodejs/index.js && npm run webpack",
"webpack": "node test/webpack/webpack.js",
"debug": "npm run webpack --theme_debug",
"build-client": "node test/build-client.js",
"prepublish": "npm run build-client && npm test"
},
"devDependencies": {
"css-loader": "^6.8.1",
"glob": "^7.1.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.3",
"webpack": "5.*",
"webpack-sources": "*"
},
"keywords": [
"webpack",
"javascript",
"theme",
"color",
"replacer",
"runtime"
],
"author": {
"name": "James.Huang",
"email": "[email protected]",
"url": "http://www.hz300.com/webpack-theme-color-replacer/"
},
"license": "MIT",
"readme": "README.md",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}