-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
{
"name": "@kent426/git-ssh",
"version": "1.0.8",
"description": "switching among different github accounts",
"main": "bin/index.js",
"bin": {
"git-ssh": "git-ssh"
},
"repository": {
"type": "git",
"url": "https://github.com/kent426/git-ssh"
},
"homepage": "https://github.com/kent426/git-ssh",
"keywords": [
"git",
"ssh",
"github"
],
"scripts": {
"build": "rollup -c && npm run add-x",
"add-x": "chmod +x git-ssh",
"start": "npm run build && nodemon bin/index.js",
"serve": "npm run build && node bin/index.js",
"prepublish": "npm run build"
},
"author": "kent426",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rollup": "^2.70.2"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"inquirer-path": "^1.0.0-beta5",
"untildify": "^4.0.0",
"yargs": "^17.3.1"
}
}