-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"name": "fastify-secrets-core",
"version": "3.0.0",
"description": "Simplify development of fastify-secrets plugins",
"main": "lib/fastify-secrets-core.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "tap --no-browser --coverage-report=html --coverage-report=text test",
"test:ci": "tap --no-color --coverage-report=json --coverage-report=text test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-secrets-core.git"
},
"author": "NearForm Ltd",
"contributors": [
"Simone Busoli <simone.busoli@nearform.com>"
],
"license": "Apache-2.0",
"keywords": [
"fastify",
"secrets"
],
"bugs": {
"url": "https://github.com/nearform/fastify-secrets-core/issues"
},
"homepage": "https://github.com/nearform/fastify-secrets-core#readme",
"engines": {
"node": ">= 12.13.0"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"p-map": "^4.0.0",
"p-props": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"prettier": "^3.0.1",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"tap": "^16.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"pre-push": "npm run lint && npm run test"
}
}
}