-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "@genese/cli",
"version": "1.2.3",
"description": "CLI for @genese modules",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/src/index.js",
"publish_package": "npm run build && npm publish",
"reinstall": "npm run republish_package && npm i -g @genese/cli",
"republish_package": "npm run build && npm unpublish -f && npm publish"
},
"bin": {
"genese": "dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geneseframework/cli.git"
},
"author": {
"name": "Gilles Fabre",
"url": "http://gillesfabre.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geneseframework/cli/issues"
},
"homepage": "https://github.com/geneseframework/cli#readme",
"dependencies": {
"@types/node": "^14.14.8",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}