-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "vue-highcharts",
"version": "0.2.0",
"description": "Highcharts component for Vue",
"main": "dist/vue-highcharts.js",
"module": "index.js",
"sideEffects": false,
"files": [
"dist",
"index.js"
],
"scripts": {
"lint": "eslint index.js test",
"unit": "jest --collect-coverage",
"test": "npm run lint && npm run unit",
"dev": "rollup -c -w",
"build": "rollup -c",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhenye/vue-highcharts.git"
},
"keywords": [
"vue",
"highcharts",
"chart",
"plugin",
"component"
],
"author": "Zhenye Wei",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhenye/vue-highcharts/issues"
},
"homepage": "https://github.com/weizhenye/vue-highcharts",
"peerDependencies": {
"highcharts": ">=4.2.0",
"vue": ">=3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"highcharts": "^8.2.0",
"jest": "^26.4.2",
"rollup": "^2.27.1",
"rollup-plugin-terser": "^7.0.2",
"vue": "^3.0.0"
}
}