-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "@kongying-tavern/cli",
"version": "0.0.0",
"description": "A pluggable CLI for Kongying Tavern.",
"main": "dist/index.js",
"repository": "git@github.com:kongying-tavern/cli.git",
"author": "Alex Fang <deeno@qq.com>",
"license": "MIT",
"bin": {
"ky": "dist/index.js"
},
"scripts": {
"commit": "cz",
"lint": "eslint --ext=.js,.ts ./src",
"build": "tsc",
"release": "semantic-release"
},
"private": false,
"devDependencies": {
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.17.0",
"semantic-release": "^19.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"typescript": "^4.7.3",
"yargs": "^17.5.1"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}