-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "clegen",
"version": "5.0.0",
"description": "Generate modules with clean code for Typescript projects",
"main": "dist/index.js",
"bin": {
"clegen": "dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"prepare": "rm -rf dist && npx tsc && npm run copy",
"copy": "npx cross-env NODE_ENV=production node scripts/copy.js",
"upload": "npm publish --access public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvrcoag/clegen.git"
},
"keywords": [
"module",
"architecture",
"generator",
"clean",
"clean architecture",
"hexagonal architecture",
"services",
"react generator"
],
"author": "mvrcoag",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvrcoag/clegen/issues"
},
"homepage": "https://github.com/mvrcoag/clegen#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"dependencies": {
"enquirer": "^2.4.1"
}
}