forked from jmcdo29/nest-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.08 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.08 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
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": "nestjs-commander-monorepo",
"version": "1.0.0",
"description": "A module for making CLI applications with NestJS. Decorators for running commands and separating out config parsers included. This package works on top of commander.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest -c jest.config.js test",
"lint": "eslint --ext .ts .",
"format": "prettier --write \"{packages,integration}/**/{src,test}/*.ts\"",
"test:int": "jest -c jest.integration.config.js"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jmcdo29/nestjs-commander.git"
},
"keywords": [
"cli",
"nestjs",
"application",
"command",
"command-line",
"nest",
"decorator"
],
"author": "Jay McDoniel <jmcdo29@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmcdo29/nestjs-commander/issues"
},
"homepage": "https://github.com/jmcdo29/nestjs-commander#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nestjs/cli": "^7.5.4",
"@nestjs/common": "^7.6.5",
"@nestjs/core": "^7.6.5",
"@nestjs/testing": "^7.6.5",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext ts"
],
"*.{md,html,json,js}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}