forked from abazlinton/git-setup
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "codeclan-git-setup",
"version": "1.1.0",
"description": "Easy set up for git: does git config and SSH key generation",
"main": "index.js",
"bin": {
"codeclan-git-setup": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"author": "Stewart MacKenzie-Leigh, CodeClan",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"inquirer": "^7.3.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/inquirer": "^7.3.1",
"@types/shelljs": "^0.8.8",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.16",
"load-grunt-tasks": "^5.1.0",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeclan/codeclan-git-setup.git"
},
"keywords": [
"git",
"setup",
"config",
"ssh"
],
"bugs": {
"url": "https://github.com/codeclan/codeclan-git-setup/issues"
},
"homepage": "https://github.com/codeclan/codeclan-git-setup#readme"
}