-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "make-ca",
"version": "1.0.10",
"license": "MIT",
"author": "Nihad Jabrayilzade",
"description": "CLI tool for generating Clean Architecture templates for NestJS & TypeORM",
"main": "dist/index.js",
"bin": {
"make-ca": "dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint --ext .ts src/",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preview": "npm run build && npm link && cd .. && rm -rf a && make-ca init -p a && cd a && npm i && make-ca g user && code .",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nihadio/make-ca.git"
},
"keywords": [
"nestjs",
"clean-architecture",
"typeorm",
"generator",
"cli"
],
"dependencies": {
"chalk": "^3.0.0",
"change-case": "^4.1.2",
"commander": "^11.1.0",
"ejs": "^3.1.9",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"ora": "^4.0.3",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
}
}