-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "vault-values",
"version": "1.1.0",
"description": "A Github action to pull values from vault and use mustache.js to parse a provided template",
"main": "dist/intex.js",
"scripts": {
"build": "ncc build index.js -o dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexly/vault-values.git"
},
"keywords": [
"hashicorp",
"vault",
"github",
"actions",
"github-actions",
"javascript"
],
"author": "Hexly, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexly/vault-values/issues"
},
"homepage": "https://github.com/hexly/vault-values#readme",
"dependencies": {
"@actions/core": "^1.2.0",
"mustache": "^4.0.1",
"node-vault": "^0.9.15"
},
"devDependencies": {
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1"
}
}