-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "vue-cute-loading",
"version": "0.0.2",
"description": "My favorite loading component for Vue.js.",
"repository": {
"url": "luyilin/vue-cute-loading",
"type": "git"
},
"main": "dist/vue-cute-loading.cjs.js",
"files": [
"dist"
],
"keywords": [
"loading",
"vue-loading"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && tyu",
"build": "bili",
"example": "poi",
"build:example": "poi build"
},
"author": {
"name": "luyilin",
"email": "[email protected]"
},
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./"
},
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
]
},
"devDependencies": {
"bili": "^1.3.3",
"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": {
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"vue-style-loader": "^4.0.2"
}
}