-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "@gopuff/healthz",
"version": "0.0.17",
"description": "Library for creating health check endpoints",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --ext .ts",
"start": "npm run build && node dist/index.js",
"test": "mocha -r ts-node/register ./test/***.ts ./test/**/*.ts",
"release:create": "standard-version",
"release:push": "git push --follow-tags origin master",
"release": "npm run release:create && npm run release:push",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gopuff/healthz.git"
},
"files": [
"dist/**/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gopuff/healthz/issues"
},
"homepage": "https://github.com/gopuff/healthz#readme",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-expect-type": "0.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"standard-version": "^9.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"dependencies": {},
"types": "dist/index.d.ts"
}