-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "vue-d2b",
"version": "2.0.4",
"dependencies": {
"d2b": "1.0.9",
"d3-selection": "^1.4.0",
"d3-transition": "^1.2.0",
"vue-property-decorator": "^7.0.0"
},
"deprecated": false,
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.4.2",
"@types/d3": "^5.7.1",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-typescript": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"cssnano": "^4.1.10",
"postcss": "^7.0.14",
"postcss-preset-env": "^6.6.0",
"postcss-utilities": "^0.8.0",
"precss": "^4.0.0",
"rollup": "^1.7.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-vue": "^4.7.2",
"tslib": "*",
"typescript": "^3.2.1",
"uglify-es": "^3.3.9",
"vue": "^2.6.6",
"vue-class-component": "^6.0.0",
"vue-template-compiler": "^2.5.21",
"webpack": "^3.0.0"
},
"files": [
"/dist",
"/src"
],
"main": "dist/vue-d2b.cjs.js",
"private": false,
"scripts": {
"build": "vue-cli-service build",
"build-bundle": "yarn build-bundle:cjs && yarn build-bundle:js && yarn build-bundle:min",
"build-bundle:cjs": "BUILD=cjs yarn build-rollup",
"build-bundle:js": "BUILD=js yarn build-rollup",
"build-bundle:min": "BUILD=min yarn build-rollup",
"build-rollup": "rollup -c rollup.config.js -g d3-selection:d3,d3-transition:d3,d2b:d2b,vue:Vue",
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve"
},
"unpkg": "dist/vue-d2b.min.js"
}