-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 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
{
"name": "saferinsulin-api",
"version": "1.1.1",
"description": "saferinsulin.org API and documentation",
"main": "app.js",
"scripts": {
"test": "mocha test/test.js",
"start": "apidoc -i ./routes/ -o ./public/ && nodemon ./bin/www",
"apidoc": "apidoc -i ./routes/ -o ./public/",
"coverage": "nyc yarn test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saferinsulin/api.git"
},
"apidoc": {
"title": "saferinsulin.org API",
"version": "1.2.6",
"template": {
"withGenerator": false
},
"url": "https://api.saferinsulin.org",
"name": "saferinsulin.org API",
"description": "",
"order": [
"POST",
"GET",
"PostStart",
"PostContinue",
"PostCheck",
"GetStart",
"GetContinue",
"GetCheck"
],
"header": {
"title": "Introduction",
"filename": "header.md"
}
},
"nyc": {
"exclude": [
"selftest.js",
"test/**"
]
},
"author": "JP Lomas <jp@lomas.doctor>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saferinsulin/api/issues"
},
"homepage": "https://github.com/saferinsulin/api#readme",
"dependencies": {
"apidoc": "^0.26.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.17.1",
"hbs": "^4.1.1",
"helmet": "^4.4.1",
"http-errors": "~1.6.3",
"insulin-calc": "^1.2.6",
"morgan": "~1.9.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"coveralls": "^3.1.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^9.0.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0"
}
}