-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
74
75
76
77
78
{
"name": "@greenrenge/gracefully",
"version": "1.1.0",
"description": "liveness and readiness wrapper using lightship for node.js",
"main": "dist/index.js",
"homepage": "https://github.com/greenrenge/gracefully#readme",
"scripts": {
"test": "node_modules/.bin/mocha 'test/**/*.test.js' --require @babel/register --require ./test/setup.js --exit",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build": "rimraf dist/** && babel src/ -d dist -s --plugins @babel/plugin-transform-modules-commonjs",
"prettify": "prettier --write '{playground,src,test}/**/*.js'",
"preplayground": "npm run build",
"playground": "node_modules/.bin/nodemon playground/index.js --watch playground --exec 'node_modules/.bin/babel-node'",
"version": "standard-changelog && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenrenge/gracefully.git"
},
"keywords": [
"lightship",
"liveness",
"readiness",
"kubernetes",
"k8s",
"probes"
],
"author": "Kitthanat Srirussamee <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chaid": "^1.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.17.1",
"lint-staged": "^10.0.3",
"lodash": "^4.17.15",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"standard-changelog": "^2.0.21",
"std-mocks": "^1.0.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"lightship": "^6.1.0"
},
"publishConfig": {
"access": "public"
}
}