-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "git-wiz",
"version": "1.4.1",
"author": {
"email": "[email protected]",
"name": "Mosh Feu",
"url": "https://github.com/moshfeu"
},
"scripts": {
"build": "webpack",
"build:prod": "webpack --config webpack.prod.js",
"package": "yarn build:prod && npm pack",
"deploy": "yarn build:prod && npm publish"
},
"bin": {
"git-wiz": "bin/index.js"
},
"files": [
"bin/index.js"
],
"repository": {
"url": "https://github.com/spread-the-code/git-wiz"
},
"homepage": "https://github.com/spread-the-code/git-wiz#readme",
"license": "MIT",
"description": "Make git commands interactive",
"keywords": [
"git",
"cli",
"node"
],
"dependencies": {
"commander": "^6.1.0",
"fast-glob": "^3.2.4",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "git+https://github.com/moshfeu/inquirer-autocomplete-prompt.git"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"json-loader": "^0.5.7",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}