-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.66 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
{
"name": "trunk-charts",
"version": "0.1.0",
"description": "A library to provide opinionated React charting modules using NVD3.",
"main": "./lib",
"scripts": {
"build": "npm run lint && babel --stage 1 ./src/js --out-dir ./lib",
"clean": "rimraf build lib",
"lint": "eslint src test example",
"test": "gulp test",
"test-watch": "gulp test-watch",
"example": "(cd example; webpack-dev-server -d --hot --inline)"
},
"author": "Trunk Platform",
"repository": {
"type": "git",
"url": "https://github.com/Trunkplatform/trunk-charts.git"
},
"license": "",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"blue-tape": "^0.1.10",
"css-loader": "^0.20.2",
"eslint": "^1.3.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-batch": "^1.0.5",
"gulp-debug": "^2.1.2",
"gulp-eslint": "^1.0.0",
"gulp-rimraf": "^0.2.0",
"gulp-tape": "0.0.4",
"gulp-watch": "^4.3.5",
"react-hot-loader": "^1.3.0",
"react-redux": "^2.1.1",
"redux": "^2.0.0",
"redux-devtools": "^2.1.0",
"rimraf": "^2.4.3",
"run-sequence": "^1.1.4",
"style-loader": "^0.13.0",
"tap-colorize": "^1.2.0",
"tape": "^4.2.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"d3": "^3.5.6",
"immutable": "^3.7.5",
"nvd3": "^1.8.1",
"papaparse": "mholt/PapaParse#4.1.2",
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}