-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "vue-star-rating",
"version": "2.1.0",
"description": "A simple, highly customisable star rating component for Vue 3.x.",
"main": "dist/VueStarRating.common.js",
"scripts": {
"test": "jest",
"lint": "npx vue-cli-service lint",
"serve": "npx vue-cli-service serve ./examples/commonjs/app.js",
"build": "npx vue-cli-service build --target lib --name VueStarRating ./src/index.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craigh411/vue-star-rating.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"star rating",
"star",
"vue",
"vue.js",
"vue 3"
],
"author": "Craig Humphreys",
"license": "MIT",
"bugs": {
"url": "https://github.com/craigh411/vue-star-rating/issues"
},
"homepage": "https://github.com/craigh411/vue-star-rating#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime-corejs3": "^7.11.2",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"@vue/compiler-sfc": "^3.0.0",
"@vue/test-utils": "^2.0.0-beta.5",
"babel-jest": "^26.3.0",
"eslint": "^7.10.0",
"eslint-plugin-vue": "^7.0.0",
"jest": "^26.4.2",
"typescript": "^4.0.3",
"vue-jest": "^5.0.0-alpha.4"
},
"dependencies": {
"vue": "^3.0.0"
}
}