-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 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
48
49
50
51
52
53
{
"name": "git-ssh-key",
"description": "Setup ssh private keys for git from environment variables",
"version": "1.1.0",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist/"
],
"bin": {
"git-ssh-key": "./dist/index.js"
},
"scripts": {
"build": "cosmo build",
"test": "cosmo test",
"start": "cosmo start",
"format": "cosmo format",
"lint": "cosmo lint",
"release": "cosmo release",
"flow": "flow",
"flowtyped": "flow-typed",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"cosmo format -f",
"cosmo lint -f",
"git add"
]
},
"eslintConfig": {
"extends": "cosmo"
},
"author": {
"name": "Siddharth Doshi",
"email": "sidoshi510@gmail.com",
"url": "https://sid.sh"
},
"repository": "https://github.com/doshisid/git-ssh-key",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.42",
"chalk": "^2.3.2",
"dotenv": "^5.0.1",
"fs-extra": "^5.0.0"
},
"devDependencies": {
"cosmo-cli": "0.1.10",
"flow-bin": "^0.68.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0"
}
}