forked from mattstrom/commander-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "commander-ts",
"version": "0.2.0",
"description": "TypeScript decorators that enhance commander",
"keywords": [
"command line",
"cli",
"commander",
"typescript"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"exec": "node dist/program.js",
"test": "echo \"No tests yet\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test"
}
},
"author": {
"name": "Matt Strom",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mattstrom/commander-ts"
},
"homepage": "https://github.com/mattstrom/commander-ts#readme",
"bugs": "https://github.com/mattstrom/commander-ts/issues",
"files": [
"dist"
],
"dependencies": {
"commander": "^5.0.0"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.12",
"@semantic-release/github": "^5.2.10",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/node": "^13.9.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^1.2.4",
"gulp": "^4.0.2",
"gulpclass": "^0.2.0",
"husky": "^3.0.4",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.24",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}