-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
43
44
45
46
47
48
49
{
"name": "branch-tools",
"version": "0.3.3",
"bin": {
"branch-tools": "dist/src/bin/branch-tools.js"
},
"description": "A toolset for git branches",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && node dist/src/bin/branch-tools.js",
"start": "tsc --watch",
"build": "tsc",
"preversion": "npm run build",
"deploy": "npx np --no-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robbie-Cook/branch-tools.git"
},
"keywords": [
"branch",
"git",
"tools"
],
"author": "Robbie Cook <https://github.com/Robbie-Cook>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Robbie-Cook/branch-tools/issues"
},
"homepage": "https://github.com/Robbie-Cook/branch-tools#readme",
"dependencies": {
"enquirer": "^2.3.6",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"meow": "^8.0.0",
"node-extended": "^1.1.0",
"tiny-async-pool": "^1.2.0",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"@types/listr": "^0.14.2",
"@types/tiny-async-pool": "^1.0.0",
"@types/update-notifier": "^5.0.0",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1"
}
}