-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.36 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
{
"name": "vue-cute-timeline",
"version": "1.2.8",
"description": "A cute timeline component for Vue.js",
"repository": {
"url": "luyilin/vue-cute-timeline",
"type": "git"
},
"main": "dist/vue-cute-timeline.js",
"files": [
"dist"
],
"keywords": [
"timeline",
"vue-timeline",
"vue-cute-timeline"
],
"scripts": {
"prepublishOnly": "npm run test && npm run build && npm run build:example",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && test-vue-app",
"build": "bili --debug",
"example": "poi",
"build:example": "poi build"
},
"author": {
"name": "luyilin",
"email": "luyilin12@gmail.com"
},
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./"
},
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
],
"rules": {
"vue/max-attributes-per-line": [
2,
{
"singleline": 4,
"multiline": {
"max": 4,
"allowFirstLine": true
}
}
]
}
},
"devDependencies": {
"bili": "^2.2.0",
"eslint": "^4.17.0",
"eslint-plugin-vue": "^4.2.2",
"poi": "^9.3.10",
"rollup-plugin-vue": "^3.0.0",
"test-vue-app": "^1.0.0",
"vue-test-utils": "^1.0.0-beta.11"
},
"peerDependencies": {
"vue": "^2.1.8"
}
}