-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "@lp-clash/rule-providers",
"version": "1.3.0",
"description": "A self-used collection of rule providers",
"main": "index.js",
"type": "module",
"scripts": {
"commit": "git-cz",
"build": "gulp build",
"prepare": "husky install",
"format:check": "prettier --list-different \"**/*{js,mjs,cjs}\"",
"format:write": "prettier --write \"**/*{js,mjs,cjs}\"",
"generate:jsdelivr": "node scripts/jsdelivr.mjs",
"transform:classical-to-domain": "node scripts/classical-to-domain.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onemoon/rule-providers.git"
},
"author": "lpeng <lpengmoon@gmail.com>",
"license": "MIT",
"keywords": [
"clash",
"rule",
"provider",
"parsers"
],
"bugs": {
"url": "https://github.com/onemoon/rule-providers/issues"
},
"homepage": "https://github.com/onemoon/rule-providers#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chalk": "^5.2.0",
"commitizen": "^4.3.0",
"cz-git": "^1.6.1",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"husky": "^8.0.3",
"prettier": "2.8.8",
"semantic-release": "^21.0.2",
"yaml": "^2.3.1"
},
"files": [
"dist",
"docs",
"package.json",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}