-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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
{
"name": "vue-dcjs",
"description": "A Vue component library and bindings for dc, the charting javascript library.",
"version": "0.1.26",
"private": false,
"contributors": [
{
"name": "Shawn Pacarar",
"email": "shawn@geodav.tech",
"url": "https://geodav.tech"
}
],
"repository": "https://github.com/geodav-tech/vue-dcjs",
"scripts": {
"dev": "vue-cli-service serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"bundle": "bili src/index.js --bundle-node-modules",
"build-all": "npm run build && npm run bundle",
"publish-pages": "git subtree push --prefix dist origin gh-pages",
"publish-all": "git push && npm publish && npm run publish-pages",
"release-all": "npm run build-all && git add . && git commit -m \"$npm_config_message\" && npm run publish-all",
"lint": "vue-cli-service lint"
},
"dependencies": {
"crossfilter2": "^1.5.4",
"d3": "^6.6.2",
"dc": "^4.2.7"
},
"peerDependencies": {
"vue": "^2.7.13"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"bili": "^5.0.5",
"core-js": "^3.6.5",
"eslint": "^8.25.0",
"eslint-plugin-vue": "^9.6.0",
"rollup-plugin-vue": "^5.0.0",
"vue-router": "^3.5.4",
"vue-template-compiler": "^2.6.11"
},
"main": "bundle/index.js",
"files": [
"bundle/*"
],
"keywords": [
"vue",
"dc",
"dcjs",
"chart",
"graph",
"dc-js"
]
}