-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "server-status-utils",
"version": "1.0.2",
"description": "An internal status page for Express servers.",
"main": "index.js",
"engines": {
"node": ">=8.14.0",
"npm": ">=6.4.1"
},
"directories": {
"example": "example",
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"example": "node example/example_server.js",
"pretest": "eslint example index.js lib test",
"lint": "eslint --fix example index.js lib test",
"test": "nyc --cache --check-coverage --branches=90 --functions=100 --lines=99 --statements=99 --reporter=text --reporter=html mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/navapbc/server-status-utils.git"
},
"author": "James Bursa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/navapbc/server-status-utils/issues"
},
"homepage": "https://github.com/navapbc/server-status-utils",
"dependencies": {
"ipaddr.js": "1.9.1",
"sprintf-js": "1.1.2",
"underscore.string": "3.3.5"
},
"devDependencies": {
"chai": "4",
"eslint": "6",
"eslint-config-nava": "8",
"express": "4",
"libxmljs": "0.19",
"mocha": "7",
"nyc": "15",
"sinon": "9",
"supertest": "4"
}
}