-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 915 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
{
"name": "@psimk/git-code",
"version": "0.0.4",
"main": "build/src/index.js",
"license": "MIT",
"bin": {
"git-code": "./bin/git-code"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"start": "ts-node src/index.ts",
"prepublish": "yarn build",
"build": "tsc -p tsconfig.prod.json"
},
"devDependencies": {
"@types/node": "^11.13.0",
"@types/ora": "^3.2.0",
"@types/uuid": "^3.4.4",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.1"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"ora": "^3.4.0",
"uuid": "^3.3.2"
}
}