-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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": "@iflix/vaultex",
"version": "0.0.4",
"description": "Vaultex is a node module for interacting with Hashicorp Vault",
"main": "lib/vaultex.js",
"scripts": {
"test": "echo 'fix me'",
"build": "babel src -d lib",
"prepublish": "npm run build",
"pretest": "npm run lint",
"lint": "standard --verbose | snazzy",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iflix/vaultex.git"
},
"keywords": [
"vault",
"vaultproject",
"hashicorp",
"secrets"
],
"author": "Adam Brady <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/iflix/vaultex/issues"
},
"homepage": "https://github.com/iflix/vaultex#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"precommit-hook": "^3.0.0",
"snazzy": "^3.0.0",
"standard": "^6.0.8"
},
"dependencies": {
"request": "^2.64.0"
},
"pre-commit": [
"test"
]
}