forked from openaps/oref0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.92 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
77
78
79
80
81
82
83
84
85
{
"name": "oref0",
"version": "0.3.3",
"description": "openaps oref0 reference implementation of the reference design",
"scripts": {
"test": "make test",
"global-install": "npm install && sudo npm install -g && sudo npm link && sudo npm link oref0"
},
"repository": {
"type": "git",
"url": "https://github.com/openaps/oref0.git"
},
"keywords": [
"openaps"
],
"author": "Scott Leibrand, OpenAPS contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/openaps/oref0/issues"
},
"bin": {
"oref0-setup": "./bin/oref0-setup.sh",
"oref0-set-device-clocks": "./bin/oref0-set-device-clocks.sh",
"oref0-set-system-clock": "./bin/oref0-set-system-clock.sh",
"oref0-calculate-iob": "./bin/oref0-calculate-iob.js",
"oref0-find-insulin-uses": "./bin/oref0-find-insulin-uses.js",
"oref0-detect-sensitivity": "./bin/oref0-detect-sensitivity.js",
"oref0-determine-basal": "./bin/oref0-determine-basal.js",
"oref0-meal": "./bin/oref0-meal.js",
"oref0-normalize-temps": "./bin/oref0-normalize-temps.js",
"send-tempbasal-Azure": "./bin/send-tempbasal-Azure.js",
"oref0-fix-git-corruption": "bin/oref0-fix-git-corruption.sh",
"oref0-get-profile": "./bin/oref0-get-profile.js",
"oref0-mint-max-iob": "./bin/oref0-mint-max-iob.sh",
"oref0-ifttt-notify": "./bin/oref0-ifttt-notify",
"oref0-raw": "./bin/oref0-raw.js",
"oref0-reset-usb": "bin/oref0-reset-usb.sh",
"oref0-reset-git": "bin/oref0-reset-git.sh",
"oref0-truncate-git-history": "bin/oref0-truncate-git-history.sh",
"mm-format-ns-glucose": "./bin/mm-format-ns-glucose.sh",
"mm-format-ns-profile": "./bin/mm-format-ns-profile.sh",
"mm-format-ns-treatments": "./bin/mm-format-ns-treatments.sh",
"mm-format-ns-pump-history": "./bin/mm-format-ns-pump-history.sh",
"oref0": "./bin/oref0.sh",
"mm-stick": "./bin/mm-stick.sh",
"ns-upload-entries": "./bin/ns-upload-entries.sh",
"ns-upload": "./bin/ns-upload.sh",
"ns-get": "./bin/ns-get.sh",
"ns-status": "./bin/ns-status.js",
"nightscout": "./bin/nightscout.sh",
"ns-dedupe-treatments": "./bin/ns-dedupe-treatments.sh",
"oref0-html": "./bin/oref0-html.js",
"oref0-template": "./bin/oref0-template.js",
"oref0-copy-fresher": "./bin/oref0-copy-fresher",
"oref0-pebble": "./bin/oref0-pebble.js",
"oref0-crun": "./bin/oref0-conditional-run.sh"
},
"homepage": "https://github.com/openaps/oref0",
"dependencies": {
"lodash": "^4.15.0",
"moment": "^2.14.1",
"share2nightscout-bridge": "^0.1.5",
"timezone": "0.0.47",
"yargs": "~4.3.2"
},
"devDependencies": {
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.2.0",
"should": "^7.1.0"
},
"config": {
"blanket": {
"pattern": [
"bin",
"lib",
"tests"
],
"data-cover-never": [
"node_modules"
]
}
}
}