-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "fastify-secrets-hashicorp",
"version": "3.1.2",
"description": "Fastify secrets plugin for HashiCorp Vault",
"main": "lib/fastify-secrets-hashicorp.js",
"scripts": {
"lint": "eslint lib test",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "tap --reporter=spec --coverage-report=html --coverage-report=text --100 --no-browser test",
"test:ci": "tap --no-color --reporter=spec --coverage-report=json --coverage-report=text --100 test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-secrets-hashicorp.git"
},
"author": "Alasdair McLeay <alasdair.mcleay@nearform.com>",
"license": "Apache-2.0",
"keywords": [
"fastify",
"secrets",
"hashicorp",
"vault",
"sensitive",
"encryption"
],
"bugs": {
"url": "https://github.com/nearform/fastify-secrets-hashicorp/issues"
},
"homepage": "https://github.com/nearform/fastify-secrets-hashicorp#readme",
"engines": {
"node": ">= 14"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^4.0.3",
"husky": "^9.0.11",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1",
"proxyquire": "^2.1.3",
"sinon": "^15.0.0",
"tap": "^16.0.0",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged"
}
},
"dependencies": {
"fastify-secrets-core": "^2.0.0",
"node-vault": "^0.10.2"
},
"directories": {
"lib": "lib",
"test": "test"
}
}