-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "D3.TimeSlider",
"version": "1.6.4",
"description": "A D3.js based time slider",
"homepage": "https://github.com/EOX-A/d3.TimeSlider",
"author": {
"name": "EOX IT Services GmbH",
"url": "http://eox.at/"
},
"repository": {
"type": "git",
"url": "git://github.com/EOX-A/d3.TimeSlider.git"
},
"bugs": {
"url": "https://github.com/EOX-A/d3.TimeSlider/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/EOX-A/d3.TimeSlider/blob/master/License"
}
],
"main": "d3.timeslider.coffee",
"devDependencies": {
"bootstrap": "^3.4.1",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"coffeeify": "^2.0.1",
"grunt": "~0.4.1",
"grunt-browserify": "^5.0.0",
"grunt-bump": "^0.8.0",
"grunt-coffeelint": "~0.0.6",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-compress": "~0.5.2",
"grunt-contrib-less": "~0.6.4",
"grunt-contrib-uglify": "^0.2.7",
"grunt-contrib-watch": "~0.4.4",
"mocha": "^3.2.0"
},
"dependencies": {
"d3": "^3.5.17",
"debounce": "^1.0.0",
"libcoverage": "^0.1.10"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"d3": "global:d3"
},
"scripts": {
"prepublish": "grunt",
"test": "mocha --compilers coffee:coffee-script/register tests/ --recursive",
"test:watch": "mocha --compilers coffee:coffee-script/register tests/ --recursive -w"
}
}