This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "@vgrid/areyouready",
"description": "Are You Ready module - used to signal readiness/liveliness to clusters (such as Kubernetes) via a simple HTTP server",
"version": "1.0.2",
"author": "Chris Wiggins <cwiggins@onvgrid.com>",
"homepage": "https://github.com/vgrid/areyouready",
"license": "GPL-3.0-or-later",
"main": "build/src/index.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vgrid/areyouready.git"
},
"keywords": [
"kubernetes",
"cluster",
"health",
"readiness",
"liveness"
],
"files": [
"build/src/*",
"index.d.ts"
],
"scripts": {
"build": "tsc",
"coverage": "jest --coverage --env=node",
"lint": "tslint --project ./tsconfig.json",
"test": "jest --env=node"
},
"lint-staged": {
"*.ts": [
"tslint --project ./tsconfig.json",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"husky": "^2.5.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**"
],
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}