-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.04 KB
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
{
"name": "response-dashboard",
"version": "1.0.33",
"description": "Performance measurement dashboard with configurable metrics and end-point monitoring. Ideally suited to API microservices.",
"main": "index.js",
"keywords": [
"performance",
"response times",
"microservices",
"dashboard",
"http response",
"metrics",
"charting"
],
"scripts": {
"start": "node index.js",
"test": "jest --maxWorkers=1 --testTimeout=30000",
"doc": "jsdoc -c .jsdocrc"
},
"author": "marctimperley@yahoo.co.uk",
"license": "ISC",
"repository": "https://github.com/MarcTimperley/response-dashboard.git",
"dependencies": {
"got": "^12.0.3"
},
"devDependencies": {
"boxy-jsdoc-template": "^2.0.2",
"eslint": "^8.12.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.10"
}
}