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 3
/
package.json
63 lines (63 loc) · 2.06 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
{
"name": "chartjs-plugin-barchart-background",
"description": "Chart.js plugin to add an alternating background behind a barchart.",
"homepage": "https://datavisyn.io",
"version": "3.0.0",
"author": {
"name": "datavisyn GmbH",
"email": "contact@datavisyn.io",
"url": "https://datavisyn.io"
},
"contributors": [
{
"name": "Samuel Gratzl",
"email": "samuel.gratzl@datavisyn.io",
"url": "http://datavisyn.io"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/datavisyn/chartjs-plugin-barchart-background.git"
},
"bugs": {
"url": "https://github.com/datavisyn/chartjs-plugin-barchart-background/issues"
},
"main": "build/Plugin.Barchart.Background.js",
"files": [
"build",
"src/**/*.js"
],
"dependencies": {
"chart.js": "^2.7.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^3.19.0",
"package-preamble": "0.0",
"rimraf": "^2.6.2",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"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.Barchart.Background.js -c -m -o build/Plugin.Barchart.Background.min.js",
"prebuild": "npm run clean && npm test",
"build": "npm run build:prod",
"preversion": "npm run test",
"prepare": "npm run build:dev",
"prepublishOnly": "npm run build:prod",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:pre": "npm version prerelease && npm publish --tag=next && git push --follow-tags"
}
}