-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "branch-manager",
"version": "0.0.0",
"description": "Manage your branches on Github",
"main": "./dist/main.js",
"repository": "https://github.com/michael-yx-wu/branch-manager",
"author": "Michael Wu <[email protected]>",
"license": "MIT",
"bin": {
"branch-manager": "./main.js",
"branch-manager-lock": "./commands/lock.js",
"branch-manager-unlock": "./commands/unlock.js"
},
"scripts": {
"clean": "npm run clean:build && npm run clean:node-modules",
"clean:build": "rm -rf build",
"clean:node-modules": "rm -rf node_modules",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint 'src/**/*.ts'",
"copy": "npm run copy:package-json && npm run copy:readme",
"copy:package-json": "mkdir -p build; cp package.json build",
"copy:readme": "mkdir -p build; cp README.md build",
"dist": "npm run build && npm run copy"
},
"dependencies": {
"commander": "^2.10.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/node": "^8.0.6",
"@types/request-promise-native": "^1.0.5",
"@types/webpack": "^3.0.1",
"@types/winston": "^2.3.3",
"ts-node": "^3.1.0",
"tslint": "^5.5.0",
"typescript": "2.4.1"
}
}