-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "chartjs-plugin-waterfall",
"homepage": "http://www.chartjs.org",
"description": "Chart.js plugin for easy waterfall charts",
"version": "1.1.0",
"license": "MIT",
"main": "lib/chartjs-plugin-waterfall.js",
"repository": {
"type": "git",
"url": "/~https://github.com/everestate/chartjs-plugin-waterfall"
},
"files": [
"dist",
"lib"
],
"scripts": {
"bundle": "rollup -c",
"clean": "rimraf lib && rimraf dist",
"build": "npm-run-all clean bundle",
"version": "npm run build && git add -A dist"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"editorconfig": "^0.14.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.3.0",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"peerDependencies": {
"chart.js": ">= 2.0.0 < 3",
"lodash": "^4.16.4"
}
}