-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage-v5.json
74 lines (74 loc) · 2.61 KB
/
package-v5.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
{
"name": "themes-switch",
"version": "1.0.11",
"description": "Toolset for switch multiple themes in application based on webpack",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"test": "mocha -t 600000",
"pub": "cp README.md dist && cp package.json dist && cp .npmignore dist && cd dist && npm publish",
"build": "rm -rf dist && cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
"build-sample:less": "cd samples/simple-less && rm -rf build && webpack",
"build-sample:postcss": "cd samples/simple-postcss && rm -rf build && webpack",
"build-sample:sass": "cd samples/simple-sass && rm -rf build && webpack",
"build-sample:css": "cd samples/simple-css && rm -rf build && webpack",
"build-sample:less-react": "cd samples/simple-less-react && rm -rf build && webpack",
"build-sample:less-vue": "cd samples/simple-less-vue && rm -rf build && webpack",
"build-sample:less-vue-chunks": "cd samples/simple-less-vue-chunks && rm -rf build && webpack",
"build-sample:less-ignored-files": "cd samples/simple-less-ignored-files && rm -rf build && webpack",
"build-sample:less-existing-minicss": "cd samples/simple-less-existing-minicss && rm -rf build && webpack"
},
"author": "trence320@163.com",
"license": "MIT",
"keywords": [
"theme",
"switch",
"multiple"
],
"repository": {
"type": "git",
"url": "https://github.com/terence55/themes-switch"
},
"dependencies": {
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^8.3.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.25.3",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.4.5",
"mocha": "^9.1.3",
"node-sass": "^6.0.1",
"postcss-cssnext": "^3.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^7.0.1",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"shelljs": "^0.8.4",
"style-loader": "^3.3.1",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.2.0",
"mini-css-extract-plugin": ">=0.7.0",
"webpack": ">=4.3.0"
}
}