-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "learning-d3",
"version": "1.0.0",
"description": "Learning Data Visualization with D3.js (2nd edition) examples and tutorials",
"main": "src/index.js",
"scripts": {
"test": "mocha spec/index.js",
"lint": "eslint src/*.js",
"start": "webpack-dev-server --inline --content-base src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aendrew/learning-d3.git"
},
"keywords": [
"education",
"tutorials",
"d3",
"d3.js",
"data",
"visualisation",
"books"
],
"author": "Ændrew Rininsland <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aendrew/learning-d3/issues"
},
"homepage": "https://github.com/aendrew/learning-d3#readme",
"dependencies": {
"body-parser": "^1.14.2",
"d3": "^3.5.17",
"earth-topojson": "^1.0.0",
"express": "^4.13.3",
"jsdom": "^8.0.2",
"lodash": "^3.10.1",
"systemjs": "^0.19.18",
"topojson": "^1.6.19"
},
"devDependencies": {
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-typecheck": "^2.0.1",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.7.3",
"eslint-loader": "^1.3.0",
"json-loader": "^0.5.3",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-nyan-reporter": "^0.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"style-loader": "^0.13.0",
"ts-loader": "^0.8.1",
"typescript": "^1.9.0-dev.20160220",
"typings": "^0.6.8",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
}
}