This repository was archived by the owner on Jan 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "csscomb-mini",
"version": "1.0.0",
"description": "使用 csscomb 格式化 wxss",
"author": "Frankie <1426203851@qq.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/tofrankie/csscomb-mini.git"
},
"keywords": [
"lint",
"eslint",
"prettier",
"csscomb",
"gulp-csscomb",
"wechat",
"weixin",
"miniprogram"
],
"scripts": {
"csscomb": "gulp wxssTask",
"csscomb:mini": "gulp csscombMini --path 'miniprogram/**/*.wxss'",
"eslint": "eslint --cache --fix . --ext .js",
"prettier": "prettier --cache --write './**/*.{json,js,wxml.axml,swan,css,wxss,acss}'",
"lint": "run-s prettier eslint csscomb:mini",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.js"
}
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"csscomb": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.17.0",
"eslint-config-alloy": "^4.5.1",
"gulp": "^4.0.2",
"gulp-csscomb": "^3.1.0",
"gulp-debug": "^4.0.0",
"gulp-rename": "^2.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"plugin-error": "^1.0.1",
"prettier": "^2.7.0",
"through2": "^4.0.2"
}
}