-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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": "warbler-js",
"version": "1.2.6",
"description": "A JavaScript utility library , JavaScript 实用工具库",
"main": "src/index.js",
"scripts": {
"test": "vite",
"clean": "rimraf node_modules",
"prepare": "husky install",
"commit": "git-cz",
"commit:all": "git add . && git-cz",
"dev": "vitepress dev docs --port 5273",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"release:major": "release-it --increment major",
"release:minor": "release-it --increment minor",
"release:patch": "release-it --increment patch",
"release": "release-it --release-as 1.2.0"
},
"keywords": [
"JavaScript",
"utils",
"warbler-js",
"warbler-fe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alanhzw/warbler-js"
},
"homepage": "http://www.warblerfe.top/warbler/js",
"author": "warbler",
"license": "ISC",
"devDependencies": {
"@commitlint/config-conventional": "^17.4.4",
"commitizen": "^4.3.0",
"commitlint": "^17.5.0",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"release-it": "^16.1.5",
"rimraf": "^4.4.1",
"vite": "^4.4.9",
"vitepress": "^1.0.0-alpha.76"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
]
},
"engines": {
"node": ">=16.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}