-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "vue-spin-wheel",
"version": "1.2.0",
"author": {
"name": "Florent Catiau-Tristant"
},
"keywords": [
"vue",
"vuejs",
"typescript",
"components",
"wheel",
"spin",
"spinner",
"circle"
],
"private": false,
"license": "MIT",
"main": "./dist/vue-spin-wheel.umd",
"unpkg": "./dist/vue-spin-wheel.umd.min",
"types": "./types/main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/kapcash/vue-spin-wheel"
},
"scripts": {
"serve": "vue-cli-service serve ./src/demo.ts",
"build": "vue-cli-service build --target lib src/main.ts",
"build-wc": "vue-cli-service build --target wc --name vue 'src/components/*.vue'",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.4.4",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"peerDependencies": {
"vue": "^2.5.2"
},
"devDependencies": {
"@types/webpack-env": "^1.15.1",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"prettier": "^1.19.1",
"sass": "^1.49.7",
"sass-loader": "^8.0.0",
"typescript": "~3.5.3",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.3.0"
}
}