forked from 418sec/zingchart-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "zingchart-vue",
"version": "2.0.3",
"description": "ZingChart Vue Component wrapper to allow native vue syntax for javascript charts, chart events, chart methods and chart styling.",
"author": "ZingSoft Inc",
"scripts": {
"commit": "git-cz",
"build": "vue-cli-service build --target lib --name zingchartVue ZingChart.vue",
"dev": "vue serve examples/App.vue",
"test": "mocha --config=./.configs/.mocharc.js",
"release-notes": "conventional-changelog -p angular -o CHANGELOG.md",
"release-notes-all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"main": "dist/zingchartVue.common.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"vue charts",
"zingchart",
"charts",
"vue chart",
"vue"
],
"dependencies": {
"zingchart": "latest",
"zingchart-constants": "github:zingchart/zingchart-constants#master"
},
"devDependencies": {
"@vue/cli-service": "^3.12.1",
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"mocha": "^7.2.0",
"prettier": "^1.19.1",
"vue-template-compiler": "^2.6.11"
},
"files": [
"dist"
],
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"rules": {
"no-console": "off"
}
}
}