-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.96 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
72
73
{
"name": "fastify-status",
"version": "2.1.0",
"description": "Returns common info about fastify server. Could be used for healthchecks and status monitoring.",
"keywords": [
"fastify-plugin",
"status",
"fastify",
"plugin",
"healthcheck",
"server-status"
],
"homepage": "https://gitlab.com/m03geek/fastify-status#README",
"bugs": {
"url": "https://github.com/SkeLLLa/fastify-status/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkeLLLa/fastify-status.git"
},
"license": "MIT",
"author": "m03geek",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"get-changelog": "conventional-changelog -r 2 -p angular",
"lint": "eslint .",
"release": "git add -A && standard-version -a",
"test": "npm audit --production && npm run lint && npm run unit",
"unit": "jest",
"postunit": "codecov || true"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"fastify-plugin": "^1.6.1",
"pkg-dir": "^4.2.0",
"pretty-ms": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.0",
"@typescript-eslint/parser": "^3.0.0",
"codecov": "^3.7.0",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-sort-requires": "^2.1.0",
"fastify": "^2.0.0",
"husky": "^4.2.5",
"jest": "^26.0.0",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.2.3",
"pretty-quick": "^2.0.1",
"standard-version": "^8.0.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"fastify": "*"
}
}