-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "nest-combo",
"version": "1.3.1",
"main": "lib/generate.js",
"description": "nest-combo is a CLI tool designed to supercharge your NestJS development workflow. Define your entire project structure in a yml file and generate modules, controllers, services, and more with a single command.",
"type": "module",
"bin": {
"nest-combo": "bin/cli.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint . --ext .js",
"format": "prettier --write .",
"test": "jest -- test/e2e.cli.spec.js --maxWorkers=20%",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"nestjs",
"nestjs-cli",
"cli",
"generator",
"module",
"controller",
"service"
],
"author": "ViniBr",
"license": "MIT",
"dependencies": {
"@nestjs/cli": "^11.0.5",
"chalk": "^5.4.1",
"js-yaml": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinisalves/nest-combo.git"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0"
}
}