This repository has been archived by the owner on Jan 8, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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
{
"name": "tidepool-animas-diasend-data",
"version": "0.0.1",
"description": "Fetch and parse spreadsheets containing Animas pump data from Diasend.",
"main": "index.js",
"scripts": {
"test": "make test"
},
"author": "Tidepool contributors",
"license": "BSD-2-Clause",
"dependencies": {
"request": "~2.33.0",
"moment": "~2.5.1",
"xlsjs": "~0.6.4",
"event-stream": "~3.1.0",
"mocha-lcov-reporter": "0.0.1",
"travis-cov": "~0.2.5",
"blanket": "~1.1.6",
"coveralls": "~2.7.1"
},
"devDependencies": {
"should": "~3.1.2",
"mocha": "~1.17.1"
},
"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/test_*.js"
},
"config": {
"login": "https://international.diasend.com/diasend1/login.php",
"view": "https://international.diasend.com/diasend1/view.php?period=month",
"xls": "https://international.diasend.com/diasend1/excel.php",
"blanket": {
"data-cover-never": [
"node"
],
"pattern": [
"lib/parse",
"lib/columns"
]
}
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/tidepool-org/animas-diasend-data.git"
},
"keywords": [
"animas",
"parse",
"diabetes",
"tidepool",
"diasend"
],
"bugs": {
"url": "https://github.com/tidepool-org/animas-diasend-data/issues"
},
"homepage": "https://github.com/tidepool-org/animas-diasend-data"
}