-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "fastify-secrets-env",
"version": "3.0.0",
"description": "Fastify secrets plugin for environment variables",
"main": "lib/fastify-secrets-env.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "node --test --experimental-test-coverage test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-secrets-env.git"
},
"author": "NearForm Ltd",
"license": "Apache-2.0",
"keywords": [
"fastify",
"secrets"
],
"bugs": {
"url": "https://github.com/nearform/fastify-secrets-env/issues"
},
"homepage": "https://github.com/nearform/fastify-secrets-env#readme",
"engines": {
"node": ">= 12.13.0"
},
"dependencies": {
"fastify-secrets-core": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-prettier": "^10.0.1",
"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",
"fastify": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"prettier": "^3.0.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged"
}
}
}