-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.69 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
{
"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"
}
},
"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": "^7.2.0"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@semantic-release/changelog": "6.0.0",
"@semantic-release/commit-analyzer": "9.0.1",
"@semantic-release/git": "10.0.0",
"@semantic-release/github": "8.0.1",
"@semantic-release/release-notes-generator": "10.0.2",
"@types/node": "16.11.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.4",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"semantic-release": "18.0.0",
"ts-node": "10.3.1",
"tslint": "6.1.3",
"typescript": "4.4.4"
}
}