-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "fastify-constraints",
"version": "2.0.0",
"description": "Fastify plugin to add constraints to multiple routes",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "c8 node --test && npm run test:types",
"test:types": "tsd",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-constraints.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/fastify-constraints/issues"
},
"homepage": "https://github.com/nearform/fastify-constraints#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"c8": "^10.1.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"prettier": "^3.0.1",
"tsd": "^0.31.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"tsd": {
"directory": "test/types"
},
"tap": {
"disable-coverage": true,
"allow-empty-coverage": true
}
}