-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@marcoschulte/vue3-progress",
"description": "A fully customizable vue3 plugin to display a progress bar while waiting for something, e.g. http requests",
"version": "0.0.7",
"author": "Marco Schulte",
"license": "ISC",
"repository": "https://github.com/marcoschulte/vue3-progress",
"scripts": {
"test": "jest",
"dev": "watch 'yarn build && rsync -a --exclude=node_modules --exclude=demo --delete . demo/node_modules/@marcoschulte/vue3-progress' src",
"build": "rollup -c"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"keywords": [
"vue",
"vue 3",
"vue3",
"progress",
"bar",
"progress bar",
"loading",
"loading bar",
"loading animation"
],
"devDependencies": {
"@types/jest": "^27.0.1",
"@vue/compiler-sfc": "^3.2.8",
"@vue/test-utils": "^2.0.0-rc.14",
"jest": "^27.2.0",
"rollup": "^2.56.3",
"rollup-plugin-bundle-scss": "^0.1.3",
"rollup-plugin-scss": "3",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.41.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.2",
"vue": "3.2.4",
"vue-jest": "^5.0.0-alpha.10",
"watch": "^1.0.2"
}
}