-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 956 Bytes
/
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
{
"name": "auto-squash-commit",
"version": "1.0.0",
"description": "- [ ] 把ID相同的commit合并起来",
"bin": "dist/cli.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "npm run build -- --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LYSandJ/auto-squash-commit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LYSandJ/auto-squash-commit/issues"
},
"homepage": "https://github.com/LYSandJ/auto-squash-commit#readme",
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^14.11.8",
"@types/tmp": "^0.2.0",
"execa": "^4.0.3",
"tmp": "^0.2.1"
},
"devDependencies": {
"chalk": "^4.1.0",
"jest": "^26.6.1",
"minimist": "^1.2.5",
"typescript": "^4.0.3"
}
}