-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
74
75
76
{
"name": "classy-commander",
"version": "4.1.0",
"description": "A TypeScript wrapper for Commander that lets you easily declare commands using classes & decorators and provides strongly typed arguments.",
"main": "index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.core.json",
"postbuild": "npm run package",
"check": "npm run lint && npm test && npm run package",
"clean": "rimraf ./dist",
"commit": "commit",
"example": "ts-node ./example/calc",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"package": "ts-node ./support/package.ts",
"prerelease": "npm run build",
"release": "git checkout master && git pull origin master && standard-version && ts-node ./support/updatePackageVersion.ts",
"ship": "git push --follow-tags origin master && cd ./dist && npm publish",
"pretest": "npm run build",
"test": "jest"
},
"private": true,
"author": "Ben <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"commander",
"cli",
"class",
"decorators",
"ioc",
"typescript",
"typed",
"command",
"command line"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codeandcats/classy-commander.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --config ./commitlint.config.json",
"pre-commit": "npm run check"
}
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/prompt-cli": "8.3.5",
"@types/fs-extra": "8.1.0",
"@types/glob": "7.1.2",
"@types/jest": "^29.5.8",
"coveralls": "3.1.0",
"get-root-path": "2.0.2",
"husky": "4.2.5",
"inversify": "5.0.1",
"jest": "^29.7.0",
"jest-helpers": "3.1.1",
"rimraf": "^5.0.5",
"standard-version": "7.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tslint": "6.1.2",
"typescript": "^5.2.2"
},
"dependencies": {
"boolean": "3.0.1",
"chalk": "3.0.0",
"commander": "^11.1.0",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"reflect-metadata": "0.1.13"
}
}