-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.46 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.46 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "modern-chart",
"version": "0.0.1",
"description": "React chart components",
"main": "es5/index.js",
"module": "es6/index.js",
"js:next": "es6/index.js",
"scripts": {
"docs:publish": "cd docs && gatsby build --prefix-paths && gh-pages -d public && cd ..",
"rollup": "rollup -c && rollup --config rollup.config.umd.js",
"rollup:umd": "rollup --config rollup.config.umd.js -i ./src/charts.line.js -o lib/line.min.js",
"build": "yarn build:es5 && yarn build:es6",
"build:es5": "rimraf es5 && babel src -d es5 --ignore .spec.js && flow-copy-source -v src es5",
"build:es6": "rimraf es6 && babel src -d es6 --ignore .spec.js --presets=react,flow && flow-copy-source -v src es6",
"test": "yarn lint && yarn flow && yarn jest",
"lint": "eslint src docs/src --ignore-pattern '**/*.test.js' --ext .js",
"flow": "flow check --show-all-errors",
"jest": "jest",
"jest:update": "jest -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylanmoz/modern-chart.git"
},
"keywords": [
"react",
"chart",
"graph",
"visualization",
"vx",
"react-motion"
],
"author": "Dylan Mozlowski <dylan.mozlowski@gmail.com> (http://dylanmoz.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dylanmoz/modern-chart/issues"
},
"homepage": "https://github.com/dylanmoz/modern-chart#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-glamorous-displayname": "^2.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.6.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.0",
"flow-copy-source": "^1.2.1",
"glamor": "^2.20.40",
"glamorous": "^4.7.0",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1",
"rollup": "^0.49.3",
"rollup-analyzer-plugin": "^1.0.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.spec.js"
],
"moduleDirectories": [
"src",
"node_modules"
],
"roots": [
"src/"
]
},
"dependencies": {
"@vx/axis": "^0.0.138",
"@vx/curve": "^0.0.136",
"@vx/event": "^0.0.136",
"@vx/gradient": "^0.0.140",
"@vx/grid": "^0.0.136",
"@vx/group": "^0.0.136",
"@vx/responsive": "^0.0.136",
"@vx/scale": "^0.0.136",
"@vx/shape": "^0.0.136",
"d3-array": "^1.2.0",
"d3-interpolate": "^1.1.5",
"d3-interpolate-path": "^2.0.0",
"d3-path": "^1.0.5",
"d3-shape": "^1.2.0",
"fbjs": "^0.8.15",
"moize": "^3.4.2",
"react-motion": "^0.5.1",
"react-svg-morph": "^0.1.10"
},
"peerDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}