-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.49 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.49 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@ices/theme-webpack-plugin",
"version": "2.0.4",
"description": "A library for process themes",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "tsc -p . -w -d --inlineSourceMap --inlineSources --declarationDir types",
"build": "rimraf dist && tsc -p . --noUnusedLocals --sourceMap --inlineSources --removeComments && yarn types",
"types": "rimraf types && tsc -p . -d --noUnusedLocals --emitDeclarationOnly --declarationDir types",
"prepublishOnly": "conventional-changelog -p angular -r 1 -i CHANGELOG.md -s"
},
"dependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/types": "^7.12.13",
"@ices/use-loader": "^2.0.0",
"@types/jsdom": "^16.2.6",
"cssnano": "^5.1.13",
"file-loader": "^6.2.0",
"globby": "^11.0.2",
"is-color": "^1.0.2",
"jsdom": "^16.4.0",
"loader-utils": "^2.0.0",
"postcss": "8.2.4",
"postcss-import": "^14.0.0",
"postcss-less": "^4.0.0",
"postcss-safe-parser": "^5.0.2",
"postcss-scss": "^3.0.4",
"postcss-value-parser": "^4.1.0",
"schema-utils": "^3.0.0",
"sugarss": "^3.0.3",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@ices/theme": ">=2.0.1",
"webpack": "^4.40.0 || ^5.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.12",
"@types/is-color": "^1.0.0",
"@types/loader-utils": "^2.0.1",
"@types/node": "^14.14.20",
"@types/postcss-import": "^12.0.0",
"@types/webpack": "^4.41.25",
"conventional-changelog-cli": "^2.1.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"typescript": "4.1.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": true,
"printWidth": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/icesjs/theme-webpack-plugin.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"Theme",
"Css"
],
"author": {
"name": "Stone",
"email": "star2018@outlook.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/icesjs/theme-webpack-plugin/issues"
},
"homepage": "https://github.com/icesjs/theme-webpack-plugin#readme",
"files": [
"dist",
"types"
]
}