This repository has been archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "chartjs-plugin-error-bars",
"version": "3.0.0",
"description": "Error Bars Chart.js Plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/datavisyn/chartjs-plugin-error-bars.git"
},
"main": "build/Plugin.Errorbars.js",
"unpkg": "build/Plugin.Errorbars.min.js",
"module": "build/Plugin.Errorbars.mjs",
"keywords": [
"chartjs",
"chartjs-plugin",
"chartjs-error-bars",
"error-bars",
"javascript"
],
"author": {
"name": "datavisyn GmbH",
"email": "contact@datavisyn.io",
"url": "https://datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/chartjs-plugin-error-bars/issues"
},
"files": [
"build",
"src/**/*.js"
],
"dependencies": {
"chart.js": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"package-preamble": "0.1",
"release-it": "^12.3.0",
"rimraf": "^2.6.3",
"rollup": "^1.15.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.3.9"
},
"scripts": {
"clean": "rimraf build",
"watch": "rollup -c -w -i src/plugin.js",
"test": "eslint src",
"build:dev": "rollup -c -i src/plugin.js",
"build:prod": "npm run build:dev && uglifyjs build/Plugin.Errorbars.js -c -m -o build/Plugin.Errorbars.min.js",
"prebuild": "npm run clean && npm test",
"build": "npm run build:prod",
"preversion": "npm run test",
"prepare": "npm run build:dev",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:pre": "release-it --preRelease=alpha --npm.tag=next"
}
}