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 7
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "chartjs-scale-hierarchical",
"description": "Chart.js module for hierarchical categories",
"homepage": "https://datavisyn.io",
"version": "3.0.0",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"url": "https://datavisyn.io"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/chartjs-scale-hierarchical.git"
},
"main": "build/Chart.Hierarchical.js",
"unpkg": "build/Chart.Hierarchical.min.js",
"module": "build/Chart.Hierarchical.esm.js",
"files": [
"build",
"src/**/*.js"
],
"dependencies": {
"chart.js": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"release-it": "^12.4.3",
"rimraf": "^3.0.0",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.3.9"
},
"scripts": {
"clean": "rimraf build",
"watch": "rollup -c -w -i src/index.js",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"build:dev": "rollup -c -i src/index.js",
"build:prod": "npm run build:dev && uglifyjs build/Chart.Hierarchical.js -c -m -o build/Chart.Hierarchical.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"
}
}