-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.95 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
77
78
79
{
"name": "@dhiwise/node-generator",
"version": "0.2.1",
"description": "The open source platform for Node.js application development. Development package to quickly generate Node APIs and Module which included route, controller, model and joi validation.",
"main": "index.js",
"repository": {
"url": "https://github.com/DhiWise/dhiwise-node-generator"
},
"scripts": {
"commit": "cz",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "https://www.dhiwise.com/",
"license": "Apache-2.0",
"dependencies": {
"@babel/generator": "^7.15.8",
"@babel/parser": "^7.15.8",
"@babel/traverse": "^7.15.4",
"@babel/types": "^7.15.6",
"commander": "^8.3.0",
"ejs": "^3.1.6",
"fs-extra": "^10.0.0",
"key-value-replace": "^3.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4",
"prompts": "^2.4.2",
"yargs": "^13.2.4"
},
"devDependencies": {
"commitizen": "^4.2.4",
"conventional-github-releaser": "^3.1.2",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.3.2"
},
"bin": {
"dhi": "./bin/index.js"
},
"contributors": [
{
"name": "Shubham Jasani",
"email": "[email protected]",
"url": "https://github.com/jasanishubh123"
}
],
"command": {
"publish": {
"conventionalCommits": true,
"yes": true
}
},
"keywords": [
"nodejs",
"node",
"cli",
"dhiwise",
"cli-app",
"generator",
"boilerplate",
"code-generator",
"express",
"mongoose",
"sequelize",
"CRUD",
"rest-api generator",
"REST",
"APIs",
"cli generator"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}