-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.08 KB
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
{
"name": "@kagronick/kgauge-vue",
"version": "1.0.7",
"private": false,
"main": "dist/kgauge-vue.umd.js",
"module": "dist/kgauge-vue.esm.js",
"unpkg": "dist/kgauge-vue.min.js",
"browser": {
"./sfc": "src/KGauge.vue"
},
"description": "JustGage rebuilt for Vue in only 8kb",
"author": "Kyle Agronick",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/kgauge-vue.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/kgauge-vue.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/kgauge-vue.min.js",
"build:example": "rollup --config rollup.example.config.js --format iife --file dist/kgauge-example.min.js"
},
"dependencies": {
"vue": "^2.6.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"rollup": "^1.12.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"vue-template-compiler": "^2.5.21"
},
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agronick/KGauge.git"
},
"keywords": [
"gauge",
"gage",
"gauge",
"donut",
"doughnut",
"circle",
"animated",
"vue",
"just"
],
"bugs": {
"url": "https://github.com/agronick/KGauge/issues"
},
"homepage": "https://github.com/agronick/KGauge#readme"
}