forked from carbon-design-system/carbon-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.3 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
110
111
{
"name": "@carbon/charts-vue",
"version": "0.41.2",
"description": "Carbon charting components for Vue",
"main": "charts-vue.umd.min.js",
"scripts": {
"build": "bash build.sh",
"lint": "vue-cli-service lint ./src/index.js",
"storybook": "start-storybook -p 6006",
"demo:build": "build-storybook -o demo/bundle --quiet",
"ci-check": "yarn format:diff",
"format": "prettier --write \"**/*.{scss,css,js,md,vue}\"",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md,vue}\"",
"clean": "rm -rf dist demo/bundle"
},
"dependencies": {
"@carbon/charts": "^0.41.2",
"vue": "2.5.21"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@storybook/addon-knobs": "5.3.12",
"@storybook/addon-links": "5.3.12",
"@storybook/addons": "5.3.12",
"@storybook/theming": "5.3.12",
"@storybook/vue": "5.3.12",
"@vue/babel-preset-app": "4.1.2",
"@vue/cli-plugin-babel": "4.1.2",
"@vue/cli-plugin-eslint": "4.1.2",
"@vue/cli-service": "4.1.2",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-preset-vue": "2.0.2",
"cache-loader": "4.1.0",
"eslint": "5.8.0",
"eslint-plugin-vue": "5.0.0",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"vue-loader": "^15.7.0",
"vue-template-compiler": "2.5.21"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"lint-staged": {
"*.{scss,css,js,md,vue}": [
"yarn format",
"git add"
]
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"repository": {
"type": "git",
"url": "[email protected]:carbon-design-system/carbon-charts.git",
"homepage": "https://carbon-design-system.github.io/carbon-charts/vue/"
},
"license": "Apache-2.0",
"author": "IBM",
"keywords": [
"carbon",
"charts",
"vue",
"dataviz",
"data-visualization",
"visualizations",
"d3",
"svg",
"component",
"components",
"css",
"html",
"ibm",
"typescript",
"javascript",
"js",
"library",
"pattern",
"patterns",
"sass",
"scss"
]
}