forked from ankane/react-chartkick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 818 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 818 Bytes
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
{
"name": "react-chartkick",
"version": "0.2.0",
"description": "Create beautiful JavaScript charts with one line of React",
"main": "dist/react-chartkick.js",
"module": "dist/react-chartkick.esm.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint src"
},
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"authors": [
"ankane"
],
"repository": {
"type": "git",
"url": "https://github.com/ankane/react-chartkick"
},
"files": [
"dist"
],
"devDependencies": {
"eslint": "^4.18.1",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"chartkick": "^2.3.5"
}
}