-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.43 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
{
"name": "slay-terminus",
"version": "0.0.3",
"description": "Slay preboot providing shutdown and Kubernetes readiness / liveness checks with terminus.",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"coverage": "nyc mocha --recursive lib",
"lint": "eslint-godaddy --max-warnings 0 --ignore-pattern /coverage/ ./",
"release": "standard-version",
"test": "mocha --recursive lib"
},
"keywords": [
"slay",
"terminus",
"kubernetes"
],
"repository": {
"type": "git",
"url": "git@github.com:godaddy/slay-terminus.git"
},
"author": "GoDaddy Operating Company, LLC",
"maintainer": "Jacopo Daeli <jacopo.daeli@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.2.1",
"eslint-config-godaddy": "^4.0.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^8.1.1",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"standard-version": "^9.0.0"
},
"nyc": {
"check-coverage": true,
"reporter": [
"cobertura",
"json-summary",
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/",
"**/*.test.js",
"index.js"
],
"lines": 4,
"functions": 4,
"all": true,
"cache": false,
"temp-directory": "./coverage/.nyc_output"
},
"dependencies": {
"@godaddy/terminus": "^4.11.1"
}
}