-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "@byu-oit/healthcheck",
"version": "0.1.5",
"description": "Standardized web server health checks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist types && tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/healthcheck.git"
},
"keywords": [
"healthcheck",
"rfc",
"http",
"api",
"web",
"server",
"health"
],
"author": "Brigham Young University - Office of Information Technology",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/healthcheck/issues"
},
"homepage": "https://github.com/byu-oit/healthcheck#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^29.4.0",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"node-fetch": "^2.6.7",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@sinclair/typebox": "^0.25.24",
"fastify": "^4.2.1"
},
"optionalDependencies": {
"node-fetch": "2"
}
}