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 33
/
package.json
74 lines (74 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
{
"name": "chartjs-chart-box-and-violin-plot",
"description": "Chart.js module for charting boxplots",
"homepage": "https://datavisyn.io",
"version": "4.0.0",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"url": "https://datavisyn.io"
},
"contributors": [
{
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
{
"name": "Stefan Luger",
"email": "[email protected]",
"url": "https://github.com/sluger"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/chartjs-chart-box-and-violin-plot.git"
},
"main": "build/Chart.BoxPlot.js",
"unpkg": "build/Chart.BoxPlot.min.js",
"module": "build/Chart.BoxPlot.esm.js",
"files": [
"build",
"src/**/*.js"
],
"dependencies": {
"chart.js": "^2.8.0",
"@sgratzl/science": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.0",
"jest": "^24.9.0",
"release-it": "^12.4.1",
"rimraf": "^3.0.0",
"rollup": "^1.22.0",
"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 *.tgz",
"watch": "rollup -c -w -i src/index.js",
"lint": "eslint src",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"build:dev": "rollup -c -i src/index.js",
"build:prod": "npm run build:dev && uglifyjs build/Chart.BoxPlot.js -c -m -o build/Chart.BoxPlot.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": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:pre": "release-it --preRelease=alpha --npm.tag=next"
}
}