-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
104 lines (104 loc) · 2.41 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "jscharting-vue",
"version": "2.4.0",
"description": "JSCharting plugin for Vue.js",
"homepage": "https://jscharting.com/",
"author": "JSCharting <support@jscharting.com> (https://jscharting.com/support.htm)",
"bugs": {
"email": "support@jscharting.com"
},
"license": "jscharting.com/store/",
"main": "./src/main.js",
"typings": "types/jscharting-vue.d.ts",
"scripts": {
"build-examples": "cd examples && npm install && npm run build",
"build-examples-vue3": "cd examples-vue3 && npm install && npm run build",
"serve-examples": "cd examples && npm install && npm run serve",
"serve-examples-vue3": "cd examples-vue3 && npm install && npm run serve",
"lint": "eslint src/components/** scripts/** ",
"format": "prettier --config ./.prettierrc.js --write src/**/*.vue tests/** scripts/**",
"postinstall": "node ./scripts/postinstall.js",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/components/$1"
}
},
"dependencies": {
"jscharting": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.8.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.7",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"core-js": "^3.4.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"vue": "^2.6.10 || >=3.0.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jscharting/jscharting-vue.git"
},
"keywords": [
"charts",
"dataviz",
"graphs",
"visualization",
"javascript-chart",
"javascript",
"vuejs",
"vue"
],
"files": [
"src/",
"types/",
"scripts/",
"*.md",
"babel.config.js",
".travis.yml"
]
}