forked from highcharts/highcharts-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.1 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
75
76
77
78
79
80
81
82
83
84
{
"name": "highcharts-vue",
"version": "1.3.5",
"description": "Highcharts wrapper Vue component",
"main": "dist/highcharts-vue.min.js",
"typings": "types/highcharts-vue.d.ts",
"scripts": {
"test": "jest",
"build": "webpack",
"build:app": "cd demo && npm install",
"app": "cd demo && npm run dev",
"lint": "eslint . --ext .js,.vue",
"lint:fix": "eslint . --ext .js,.vue --fix",
"release": "standard-version"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"homepage": "https://github.com/highcharts/highcharts-vue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/highcharts/highcharts-vue"
},
"bugs": {
"url": "https://github.com/highcharts/highcharts-vue/issues"
},
"keywords": [
"highcharts",
"wrapper",
"vue",
"component"
],
"author": "Daniel Studencki <daniel.studencki@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist",
"src",
"types",
"utils"
],
"peerDependencies": {
"highcharts": ">=5.0.0",
"vue": ">=1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build && git add -A"
}
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.0",
"eslint": "^4.17.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.2.2",
"highcharts": "^7.1.1",
"husky": "^1.0.0-rc.13",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"standard": "^10.0.3",
"standard-version": "^8.0.1",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.10.0"
}
}