-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "fastify-blipp",
"version": "4.0.0",
"description": "Print routes of your fastify instance",
"main": "src/index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"precommit": "lint-staged",
"prettier:all": "prettier \"./{src,var}/**/*.js\" --write",
"typescript": "tsc --project ./src/__tests__/types/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PavelPolyakov/fastify-blipp.git"
},
"keywords": [
"blipp",
"fastify"
],
"author": "Pavel Polyakov",
"license": "ISC",
"bugs": {
"url": "https://github.com/PavelPolyakov/fastify-blipp/issues"
},
"homepage": "https://github.com/PavelPolyakov/fastify-blipp#readme",
"devDependencies": {
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"fastify": "^4.14.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "^5.2.0",
"fastify-plugin": "^4.5.0"
}
}