-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
50
51
{
"name": "abc-git-flow",
"version": "0.3.0",
"description": "Gitflow for ABC Inc.",
"main": "./lib/index.js",
"bin": "./bin/git-abc",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build",
"build": "tsc -p .",
"pkg": "yarn build && cd bin && pkg -t macos git-abc",
"local": "yarn pkg && cp ./bin/git-abc-macos /usr/local/bin/git-abc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:lecion/abc-git-flow.git"
},
"keywords": [
"abc",
"git-flow"
],
"author": "Bubble",
"license": "ISC",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.1.1",
"figlet": "^1.3.0",
"got": "^11.6.1",
"inquirer": "^7.1.0",
"node-progress": "^0.1.0",
"nodegit": "^0.26.5",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/nodegit": "^0.26.1",
"@types/progress": "^2.0.3",
"@types/semver": "^7.3.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
}
}