-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "@join-com/health-check-server",
"version": "1.1.0",
"description": "node http health check server",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p .",
"prepublish": "tsc"
},
"lint-staged": {
"*.{ts,md}": [
"yarn prettier --write",
"git add"
],
"src/**/*.ts": [
"npm run lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/join-com/health-check-server.git"
},
"keywords": [
"env",
"required"
],
"author": "JOIN team",
"license": "MIT",
"bugs": {
"url": "https://github.com/join-com/health-check-server/issues"
},
"homepage": "https://github.com/join-com/health-check-server#readme",
"devDependencies": {
"@types/node": "^16.7.13",
"husky": "^1.2.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.2"
},
"dependencies": {}
}