This repository has been archived by the owner on Jan 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.7 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
{
"name": "zipline",
"version": "0.0.0",
"description": "A D3 scrolling timeline with virtual rendering.",
"main": "src/index.js",
"scripts": {
"start": "BUILD_DEV=true webpack-dev-server --devtool eval-source-map --cache --colors --content-base example --port=8081 --progress",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/jebeck/zipline.git"
},
"keywords": [
"D3",
"scrolling"
],
"author": "Jana E. Beck <[email protected]> (http://janabeck.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jebeck/zipline/issues"
},
"homepage": "https://github.com/jebeck/zipline",
"dependencies": {
"bows": "^1.4.2",
"classnames": "^2.1.1",
"crossfilter": "^1.3.11",
"d3": "^3.5.5",
"d3.chart": "^0.2.1",
"flux": "^2.0.3",
"immutable": "^3.7.2",
"lodash": "^3.8.0",
"moment": "^2.10.3",
"moment-timezone": "^0.3.1",
"object-assign": "^2.0.0",
"react": "^0.13.3",
"vc-reset-css": "^0.2.2"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"chai": "^2.3.0",
"css-loader": "^0.12.0",
"file-loader": "^0.8.1",
"jest-cli": "^0.4.3",
"json-loader": "^0.5.1",
"jsx-loader": "^0.13.2",
"less-loader": "^2.2.0",
"mocha": "^2.2.4",
"react-tools": "^0.13.3",
"rosetta": "^0.3.0",
"script-loader": "^0.6.1",
"style-loader": "^0.12.2",
"url-loader": "^0.5.5",
"webpack": "^1.9.5",
"webpack-dev-server": "^1.8.2"
},
"engines": {
"node": "0.10.x"
},
"jest": {
"rootDir": "./src",
"scriptPreprocessor": "../preprocessor.js",
"unmockedModulePathPatterns": [
"../node_modules/react"
]
}
}