-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "@ustinian-wang/kit",
"version": "0.1.11",
"main": "index.js",
"scripts": {
"test": "jest",
"jsdoc:build": "jsdoc -c jsdoc.config.json",
"docs:build": "yarn jsdoc:build",
"prepare": "husky",
"commitlint": "commitlint --edit",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"pub:patch": "npm run release:patch && git push --follow-tags origin main && npm publish",
"pub:minor": "npm run release:minor && git push --follow-tags origin main && npm publish",
"pub:major": "npm run release:major && git push --follow-tags origin main && npm publish"
},
"keywords": [
"kit",
"request",
"common",
"javascript",
"util",
"tool",
"es"
],
"files": [
"index.js",
"src"
],
"author": "ustinian-wang",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"babel-jest": "^29.7.0",
"better-docs": "^2.7.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"moment": "^2.30.1",
"standard-version": "^9.5.0"
},
"dependencies": {
"axios": "^1.7.2",
"axios-retry": "^4.5.0",
"tiny-cookie": "^2.5.1"
},
"repository": "https://github.com/ustinian-wang/kit",
"homepage": "https://ustinian-wang.github.io/kit/"
}