This repository was archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (67 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dolly-chart-example",
"version": "0.0.1",
"description": "Example project using dolly.js to navigate a fever chart",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/povdocs/dolly-chart-example.git"
},
"homepage": "https://github.com/povdocs/dolly-chart-example",
"bugs": {
"url": "https://github.com/povdocs/dolly-chart-example/issues"
},
"author": "Brian Chirls <brian@chirls.com> (http://chirls.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"del": "^1.2.0",
"gulp": "^3.8.11",
"gulp-webpack": "^1.4.0",
"jshint": "^2.7.0",
"jshint-loader": "^0.8.3",
"node-libs-browser": "^0.5.0",
"object-assign": "^3.0.0",
"open-iconic": "git+https://github.com/iconic/open-iconic.git",
"raw-loader": "^0.5.1",
"webpack": "^1.9.7"
},
"dependencies": {
"binary-search": "^1.2.0",
"d3-xhr": "^0.1.0",
"dolly": "0.0.3",
"simple-number-formatter": "^1.0.0"
},
"jshintConfig": {
"globals": {
"console": true
},
"esnext": true,
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"es3": true,
"forin": true,
"freeze": true,
"funcscope": true,
"globalstrict": true,
"immed": true,
"iterator": true,
"latedef": true,
"maxparams": 4,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"notypeof": true,
"quotmark": "single",
"shadow": true,
"singleGroups": true,
"undef": true
}
}