-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
{
"name": "vue-ellipse-progress",
"version": "2.2.0",
"private": false,
"description": "A Vue.js component to create beautiful animated circle progress bars",
"author": {
"name": "Sergej Atamantschuk",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --formats umd-min --name veprogress ./src/plugin.js",
"lint": "vue-cli-service lint",
"changelog": "auto-changelog --template changelog-template.hbs",
"lint:fix": "vue-cli-service lint --fix --ignore-path App.vue",
"prepare": "husky",
"publish-beta": "npm run lint && npm run test && npm run build && npm publish --tag beta",
"test": "vue-cli-service test:unit --colors"
},
"main": "./dist/veprogress.umd.min.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-unit-mocha": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/test-utils": "^2.4.6",
"auto-changelog": "^2.4.0",
"chai": "^4.5.0",
"commitlint": "^19.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.6.0",
"husky": "^9.1.6",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"sass-loader": "^12.6.0",
"vue": "^3.4.38"
},
"peerDependencies": {
"vue": "^3"
},
"auto-changelog": {
"unreleased": false,
"commitLimit": false,
"breakingPattern": ".!:.",
"startingVersion": "v2.0.0-alpha.4",
"package": false
},
"bugs": "https://github.com/setaman/vue-ellipse-progress/issues",
"homepage": "https://setaman.github.io/vue-ellipse-progress-docs/",
"keywords": [
"vue",
"vue2",
"vue3",
"circle",
"half circle",
"oval",
"elipse",
"chart",
"animated",
"progress",
"bar"
],
"repository": "github:setaman/vue-ellipse-progress"
}