-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "git-setup",
"version": "1.0.1",
"description": "Easy set up for git: does git config and SSH key generation",
"main": "dist/index.js",
"bin": {
"git-setup": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "grunt"
},
"author": "Stewart MacKenzie-Leigh",
"license": "ISC",
"dependencies": {
"chalk": "^2.0.1",
"clipboardy": "^1.1.4",
"inquirer": "^3.2.0",
"shelljs": "^0.7.8"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/inquirer": "0.0.35",
"@types/shelljs": "^0.7.2",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.16",
"load-grunt-tasks": "^3.5.2",
"typescript": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stewartml/git-setup.git"
},
"keywords": [
"git",
"setup",
"config",
"ssh"
],
"bugs": {
"url": "https://github.com/stewartml/git-setup/issues"
},
"homepage": "https://github.com/stewartml/git-setup#readme"
}