-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@asserted/node-uptime",
"description": "Test Node API Uptime with Asserted",
"version": "0.0.2",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/assertedio/node-uptime/issues"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"shortid": "^2.2.15"
},
"devDependencies": {
"asrtd": "^1.3.4",
"start-server-and-test": "^1.11.0"
},
"files": [
"images",
"src",
"app.js"
],
"homepage": "https://asserted.io",
"keywords": [
"api",
"asserted",
"nodejs",
"test",
"uptime",
"monitoring",
"health check",
"health",
"integration",
"integration testing",
"mocha",
"chai",
"example"
],
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/assertedio/node-uptime.git"
},
"scripts": {
"asrtd:run": "asrtd run",
"postinstall": "cd .asserted && npm i",
"start": "node app.js",
"test:asrtd": "server-test start 3000 asrtd:run"
}
}