-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "@genese/api",
"version": "1.0.5",
"description": "Generation of DTO, controllers and data-services in Angular or React with OpenApi (Swagger) files",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc && mkdir dist/src && mkdir dist/src/templates && cp src/templates/** dist/src/templates",
"start": "npm run build && node dist/index.js",
"publish_package": "npm run build && npm publish",
"republish_package": "npm run build && npm unpublish -f && npm publish"
},
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/geneseframework/api.git"
},
"author": {
"name": "Gilles Fabre",
"url": "http://gillesfabre.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geneseframework/api/issues"
},
"homepage": "https://github.com/geneseframework/api#readme",
"dependencies": {
"@types/node": "^14.14.8",
"chalk": "^4.1.0",
"eol": "^0.9.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"ora": "^5.1.0"
}
}