-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 876 Bytes
/
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
{
"name": "tg-commander",
"version": "1.0.17",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf publish",
"package": "npm run clean && tsc -P ./tsconfig.json && cp package.json publish && cp README.md publish"
},
"keywords": [
"commander",
"tiger",
"tiger-commander",
"cli",
"node"
],
"bin": {
"tc": "./test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stone-jin/tg-commander"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^10.12.18",
"yargs": "^8.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"commander": "^2.19.0",
"reflect-metadata": "^0.1.12"
}
}