@carbon/charts-vue 0.41.27 → 0.41.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -14
- package/charts-vue.common.js +60 -15
- package/charts-vue.common.js.map +1 -1
- package/charts-vue.umd.js +60 -15
- package/charts-vue.umd.js.map +1 -1
- package/charts-vue.umd.min.js +1 -1
- package/charts-vue.umd.min.js.map +1 -1
- package/package.json +112 -110
package/package.json
CHANGED
|
@@ -1,111 +1,113 @@
|
|
|
1
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
|
-
|
|
110
|
-
|
|
111
|
-
|
|
2
|
+
"name": "@carbon/charts-vue",
|
|
3
|
+
"version": "0.41.32",
|
|
4
|
+
"description": "Carbon charting components for Vue",
|
|
5
|
+
"main": "charts-vue.umd.min.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "bash build.sh",
|
|
8
|
+
"lint": "vue-cli-service lint ./src/index.js",
|
|
9
|
+
"storybook": "start-storybook -p 6006",
|
|
10
|
+
"demo:build": "build-storybook -o demo/bundle --quiet",
|
|
11
|
+
"ci-check": "yarn format:diff",
|
|
12
|
+
"format": "prettier --write \"**/*.{scss,css,js,md,vue}\"",
|
|
13
|
+
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md,vue}\"",
|
|
14
|
+
"clean": "rm -rf dist demo/bundle",
|
|
15
|
+
"postinstall": "carbon-telemetry collect --install"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@carbon/charts": "^0.41.32",
|
|
19
|
+
"@carbon/telemetry": "0.0.0-alpha.6",
|
|
20
|
+
"vue": "2.5.21"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@babel/core": "7.3.4",
|
|
24
|
+
"@storybook/addon-knobs": "5.3.12",
|
|
25
|
+
"@storybook/addon-links": "5.3.12",
|
|
26
|
+
"@storybook/addons": "5.3.12",
|
|
27
|
+
"@storybook/theming": "5.3.12",
|
|
28
|
+
"@storybook/vue": "5.3.12",
|
|
29
|
+
"@vue/babel-preset-app": "4.1.2",
|
|
30
|
+
"@vue/cli-plugin-babel": "4.1.2",
|
|
31
|
+
"@vue/cli-plugin-eslint": "4.1.2",
|
|
32
|
+
"@vue/cli-service": "4.1.2",
|
|
33
|
+
"babel-eslint": "10.0.1",
|
|
34
|
+
"babel-loader": "8.0.5",
|
|
35
|
+
"babel-preset-vue": "2.0.2",
|
|
36
|
+
"cache-loader": "4.1.0",
|
|
37
|
+
"eslint": "5.8.0",
|
|
38
|
+
"eslint-plugin-vue": "5.0.0",
|
|
39
|
+
"lint-staged": "8.1.5",
|
|
40
|
+
"prettier": "1.16.4",
|
|
41
|
+
"vue-loader": "^15.7.0",
|
|
42
|
+
"vue-template-compiler": "2.5.21"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"directory": "dist",
|
|
46
|
+
"access": "public"
|
|
47
|
+
},
|
|
48
|
+
"lint-staged": {
|
|
49
|
+
"*.{scss,css,js,md,vue}": [
|
|
50
|
+
"yarn format",
|
|
51
|
+
"git add"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"prettier": {
|
|
55
|
+
"printWidth": 80,
|
|
56
|
+
"singleQuote": true,
|
|
57
|
+
"trailingComma": "es5"
|
|
58
|
+
},
|
|
59
|
+
"eslintConfig": {
|
|
60
|
+
"root": true,
|
|
61
|
+
"env": {
|
|
62
|
+
"node": true
|
|
63
|
+
},
|
|
64
|
+
"extends": [
|
|
65
|
+
"plugin:vue/essential",
|
|
66
|
+
"eslint:recommended"
|
|
67
|
+
],
|
|
68
|
+
"rules": {},
|
|
69
|
+
"parserOptions": {
|
|
70
|
+
"parser": "babel-eslint"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"postcss": {
|
|
74
|
+
"plugins": {
|
|
75
|
+
"autoprefixer": {}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"browserslist": [
|
|
79
|
+
"> 1%",
|
|
80
|
+
"last 2 versions",
|
|
81
|
+
"not ie <= 8"
|
|
82
|
+
],
|
|
83
|
+
"repository": {
|
|
84
|
+
"type": "git",
|
|
85
|
+
"url": "git@github.com:carbon-design-system/carbon-charts.git",
|
|
86
|
+
"homepage": "https://carbon-design-system.github.io/carbon-charts/vue/"
|
|
87
|
+
},
|
|
88
|
+
"license": "Apache-2.0",
|
|
89
|
+
"author": "IBM",
|
|
90
|
+
"keywords": [
|
|
91
|
+
"carbon",
|
|
92
|
+
"charts",
|
|
93
|
+
"vue",
|
|
94
|
+
"dataviz",
|
|
95
|
+
"data-visualization",
|
|
96
|
+
"visualizations",
|
|
97
|
+
"d3",
|
|
98
|
+
"svg",
|
|
99
|
+
"component",
|
|
100
|
+
"components",
|
|
101
|
+
"css",
|
|
102
|
+
"html",
|
|
103
|
+
"ibm",
|
|
104
|
+
"typescript",
|
|
105
|
+
"javascript",
|
|
106
|
+
"js",
|
|
107
|
+
"library",
|
|
108
|
+
"pattern",
|
|
109
|
+
"patterns",
|
|
110
|
+
"sass",
|
|
111
|
+
"scss"
|
|
112
|
+
]
|
|
113
|
+
}
|