-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "vue-d3-barchart",
"version": "0.0.28",
"description": "Vue component to draw bar charts using d3 ",
"author": "emi",
"scripts": {
"build": "npm run lint && npm run clean && npm run build-component && npm run clean-dist",
"lint": "npx vue-cli-service lint",
"build-component": "npx vue-cli-service build --target lib src/vue-d3-barchart.vue",
"clean": "rm -rf ./dist",
"clean-dist": "rm dist/demo.html",
"dev": "npx vue-cli-service serve",
"example": "npx vue-cli-service build --dest example"
},
"main": "dist/vue-d3-barchart.common.js",
"dependencies": {
"d3-array": "^1.2.0",
"d3-scale": "^1.0.6",
"d3-shape": "^1.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-eslint": "~4.3.1",
"@vue/cli-service": "~4.3.1",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
},
"bugs": {
"url": "https://github.com/emiliorizzo/vue-d3-barchart/issues"
},
"keywords": [
"vue",
"vuejs",
"d3",
"network",
"d3-scale",
"graph",
"component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emiliorizzo/vue-d3-barchart"
}
}