-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "conventional-commit-cli",
"version": "1.1.2",
"description": "Select commit type, write scope, write message, and commit.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"ccc": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hwasoocho/conventional-commit-cli.git"
},
"keywords": [
"conventional",
"commit",
"cli"
],
"author": "Henry Cho",
"license": "MIT",
"bugs": {
"url": "https://github.com/hwasoocho/conventional-commit-cli/issues"
},
"homepage": "https://github.com/hwasoocho/conventional-commit-cli#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/execa": "^2.0.0",
"@types/inquirer": "^6.5.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.3"
},
"dependencies": {
"chalk": "^2.4.2",
"conventional-commit-types": "^2.1.1",
"execa": "^2.0.4",
"inquirer": "^7.0.0",
"staged-git-files": "^1.2.0"
}
}