-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "vue-cute-rate",
"version": "1.0.2",
"description": "Simple to use and very cute rate component for Vue.js",
"repository": {
"url": "luyilin/vue-cute-rate",
"type": "git"
},
"main": "dist/vue-cute-rate.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && tyu",
"build": "poi build --component vue-cute-rate",
"example": "poi -c example/poi.config.js",
"build:example": "poi build -c example/poi.config.js"
},
"author": {
"name": "luyilin",
"email": "luyilin12@gmail.com"
},
"keywords": [
"rate",
"vue-rate",
"vue-star",
"vue-cute-rate"
],
"license": "MIT",
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/max-attributes-per-line": [
3,
{
"singleline": 2,
"multiline": {
"max": 2,
"allowFirstLine": true
}
}
]
}
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.14.0",
"eslint-plugin-vue": "^4.0.1",
"poi": "^9.3.10",
"rollup-plugin-vue": "^2.5.2",
"tyu": "^1.0.0",
"vue-test-utils": "^1.0.0-beta.9"
},
"dependencies": {
"kokk": "^0.0.24",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"vue-juri": "^0.0.8",
"vue-style-loader": "^3.1.2"
}
}