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
|
{
"name": "epoch-charting",
"version": "0.8.4",
"description": "A general purpose real-time charting library for building beautiful, smooth, and high performance visualizations.",
"keywords": [
"chart",
"charting",
"visualization",
"svg",
"animation",
"canvas",
"d3"
],
"homepage": "http://fastly.github.io/epoch/",
"author": {
"name": "rsandor",
"url": "https://github.com/rsandor"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fastly/epoch.git"
},
"main": "dist/js/epoch.js",
"dependencies": {
"d3": "^3.4.13"
},
"devDependencies": {
"chai": "^3.3.0",
"codo": "^2.0.11",
"coffee-script": "^1.10.0",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.6.0",
"gulp-mocha": "^2.1.3",
"gulp-order": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"node-minify": "^1.2.1",
"node-sass": "^3.3.3",
"sinon": "^1.17.1",
"xmlhttprequest": "^1.7.0"
},
"scripts": {
"build": "gulp build",
"unit": "mocha --recursive --compilers coffee:coffee-script/register tests/unit/",
"test": "npm run build && npm run unit",
"codo": "./node_modules/.bin/codo --quiet --private --name Epoch --readme README.md --title 'Epoch Documentation' --output codo-doc src - LICENSE"
}
}
|