This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
forked from esnet/react-timeseries-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.73 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-timeseries-charts",
"version": "0.11.2",
"description": "Declarative timeseries charts",
"keywords": [
"d3",
"charts",
"react",
"timeseries"
],
"homepage": "http://software.es.net/react-timeseries-charts",
"main": "lib/entry",
"author": "ESnet Tools Team <[email protected]>",
"repository": "esnet/react-timeseries-charts",
"bugs": {
"url": "https://github.com/esnet/react-timeseries-charts/issues"
},
"scripts": {
"docs": "echo \"*** Building API docs\n\" && react-docgen src/components -x js -o src/website/api/docs.json --pretty",
"lint": "eslint src/components/*.js",
"test": "npm run lint",
"build": "echo \"*** Building lib\n\" && rm -rf lib/* && babel src/components --optional runtime --stage 0 --out-dir lib/components && babel src/js --optional runtime --stage 0 --out-dir lib/js && babel src/entry.js --optional runtime --stage 0 --out-file lib/entry.js",
"start-website": "react-scripts start",
"build-website": "echo \"*** Building website\n\" && rm -rf docs && react-scripts build && mv build docs"
},
"pre-commit": [
"lint",
"build"
],
"license": "BSD-3-Clause-LBNL",
"dependencies": {
"array.prototype.fill": "^1.0.1",
"babel-runtime": "^6.5.0",
"colorbrewer": "^1.0.0",
"d3-axis": "^0.3.0",
"d3-ease": "^0.7.0",
"d3-format": "^0.5.1",
"d3-interpolate": "^0.7.0",
"d3-scale": "^0.7.2",
"d3-scale-chromatic": "^0.3.0",
"d3-selection": "^0.7.3",
"d3-shape": "^0.6.0",
"d3-time": "^0.2.5",
"d3-time-format": "^0.3.1",
"d3-transition": "^0.2.8",
"flexbox-react": "^2.1.0",
"invariant": "^2.1.1",
"merge": "^1.2.0",
"moment": "^2.8.4",
"moment-duration-format": "^1.3.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"dsv-loader": "^1.1.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-config-esnet": "^0.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.17.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"pondjs": "^0.7.0",
"raw-loader": "^0.5.1",
"react": "^15.3.1",
"react-docgen": "^2.9.1",
"react-markdown": "^1.0.5",
"react-router": "^2.6.1",
"react-scripts": "0.2.1",
"react-select": "^1.0.0-beta14",
"ringjs": "0.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.3.1",
"pondjs": "^0.7.0"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}