-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "vault-pki-client",
"version": "1.0.2",
"description": "Tool to manage a keypair provided by HashiCorp Vault",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nexe": "nexe"
},
"bin": {
"vault-pki-client": "index.js"
},
"author": "Issac Goldstand <margol@beamartyr.net>",
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^3.1.1",
"debug": "^2.2.0",
"rc": "^1.1.5",
"request-promise": "^1.0.2"
},
"devDependencies": {
"nexe": "^0.4.2"
},
"nexe": {
"input": "index.js",
"output": "vault-pki-client^$",
"temp": "./temp/src",
"runtime": {
"framework": "nodejs",
"version": "4.2.4",
"ignoreFlags": true,
"nodeConfigureArgs": ["--fully-static"],
"nodeMakeArgs": ["-j","4"]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/issacg/vault-pki-client.git"
},
"bugs": {
"url": "https://github.com/issacg/vault-pki-client/issues"
},
"homepage": "https://github.com/issacg/vault-pki-client#readme"
}