-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "mmcsv",
"version": "0.0.4",
"description": "Scrape Carelink and Convert stream of mm csv to text",
"main": "index.js",
"scripts": {
"test": "make test"
},
"repository": "https://github.com/bewest/mmcsv.git",
"author": "Ben West <[email protected]>",
"license": "BSD-3",
"dependencies": {
"bunyan": "^1.5.1",
"chrono-node": "~0.1.8",
"common": "0.2.5",
"event-stream": "3.1.0",
"moment": "2.5.1",
"optimist": "0.6.0",
"request": "2.33.0",
"restify": "^4.0.2",
"tabtab": "git://github.com/bewest/node-tabtab.git",
"util-extend": "~1.0.1"
},
"bin": {
"mmcsv": "bin/cmd.js"
},
"testling": {
"harness": "mocha",
"browsers": [
"ie/9..latest",
"chrome/20..latest",
"firefox/14..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
],
"files": [
"test/simpleTest.js",
"test/test_validation.js",
"test/test_generation.js"
]
},
"config": {
"blanket": {
"data-cover-never": [
"node"
],
"pattern": [
"lib/desalinate",
"lib/generate",
"lib/parse",
"lib/util"
]
},
"carelink_security": "https://carelink.minimed.com/patient/j_security_check",
"carelink_login": "https://carelink.minimed.com/patient/main/login.do",
"carelink_csv": "https://carelink.minimed.com/patient/main/selectCSV.do"
},
"devDependencies": {
"mocha": "1.17.1",
"should": "3.1.0",
"lodash": "2.4.1",
"mocha-lcov-reporter": "0.0.1",
"travis-cov": "0.2.4",
"coveralls": "2.6.1",
"blanket": "1.1.6",
"tidepool-data-model": "0.0.7"
}
}