-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
109 lines (109 loc) · 3.32 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
105
106
107
108
109
{
"name": "vue-d3-sunburst",
"version": "1.0.1",
"private": false,
"scripts": {
"serve": "vue-cli-service serve ./example/main.js --open",
"build": "vue-cli-service build --name vue-d3-sunburst --entry ./src/index.js --target lib",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"prepublishOnly": "npm run lint && npm run build && npm run example:build",
"example:build": "vue-cli-service build --modern --entry ./example/main.js --dest docs",
"doc-sun:build": "npx vuedoc.md --section API --output README.md ./src/components/sunburst.vue",
"doc-bread:build": "npx vuedoc.md --section \"breadcrumbTrail\" --output README.md --ignore-name ./src/components/breadcrumbTrail.vue",
"doc-node:build": "npx vuedoc.md --section \"nodeInfoDisplayer\" --output README.md --ignore-name ./src/components/nodeInfoDisplayer.vue",
"doc-zoom:build": "npx vuedoc.md --section \"zoomOnClick\" --output README.md --ignore-name ./src/components/behavior/zoomOnClick.js",
"doc-highlight:build": "npx vuedoc.md --section \"highlightOnHover\" --output README.md --ignore-name ./src/components/behavior/highlightOnHover.js",
"doc:build": "npm run doc-sun:build && npm run doc-bread:build && npm run doc-node:build && npm run doc-zoom:build && npm run doc-highlight:build"
},
"dependencies": {
"d3-hierarchy": "^1.1.6",
"d3-interpolate": "^1.2.0",
"d3-scale": "^2.1.0",
"d3-scale-chromatic": "^1.3.0",
"d3-selection": "^1.3.0",
"d3-shape": "^1.2.0",
"d3-transition": "^1.1.1",
"vue": "^2.5.16",
"vue-resize-directive": "^1.1.4"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-prettier": "^3.0.0-rc.8",
"@vue/test-utils": "^1.0.0-beta.20",
"@vuedoc/md": "^1.3.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"bootstrap": "^4.1.3",
"font-awesome": "^4.7.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"vue-cli-plugin-component": "^1.7.1",
"vue-template-compiler": "^2.5.16"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/"
},
"main": "dist/vue-d3-sunburst.umd.js",
"module": "dist/vue-d3-sunburst.common.min.js",
"files": [
"dist/*.css",
"dist/*.map",
"dist/*.js",
"src/*"
],
"keywords": [
"vue",
"component",
"D3",
"Sunburst"
],
"license": "MIT"
}