-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "@planjs/git-utils",
"version": "0.0.5",
"description": "",
"main": "lib/index.js",
"keywords": [
"git",
"ci",
"cd",
"git check",
"git utils"
],
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"lint:fix": "eslint --fix --ext src/**/*.ts",
"dev": "tsc -w",
"test": "node --expose-gc test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"gt": "lib/cli.js"
},
"author": "yangzhoulong@icloud.com",
"license": "MIT",
"dependencies": {
"execa": "5",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@planjs/fabric": "^0.0.90",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/typescript-estree": "^5.17.0",
"commitlint": "^16.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"fs-extra": "^10.1.0",
"husky": "^7.0.4"
},
"homepage": "https://github.com/planjs/git-cli",
"bugs": {
"url": "https://github.com/planjs/git-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/git-cli.git"
},
"publishConfig": {
"access": "public"
}
}