-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.57 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
70
71
{
"name": "kokk",
"version": "1.0.6",
"description": "A beautiful way to create a documentation from markdown, and insert a vue component into the doc as well.",
"repository": {
"url": "luyilin/kokk",
"type": "git"
},
"main": "dist/kokk.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && npm run build",
"build": "poi build --component Kokk"
},
"keywords": [
"markdown",
"vue-component"
],
"author": {
"name": "luyilin",
"email": "luyilin12@gmail.com"
},
"license": "MIT",
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/max-attributes-per-line": [
2,
{
"singleline": 15,
"multiline": {
"max": 15,
"allowFirstLine": true
}
}
]
}
},
"eslintIgnore": ["examples/**"],
"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",
"vue-test-utils": "^1.0.0-beta.9"
},
"dependencies": {
"jump.js": "^1.0.2",
"marked3": "^0.5.2",
"node-sass": "^4.7.2",
"prismjs": "^1.12.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"slugo": "^0.2.1",
"throttleit": "^1.0.0",
"unfetch": "^3.0.0",
"vue-cute-loading": "^0.0.2",
"vue-router": "^3.0.1",
"vue-style-loader": "^4.0.2"
}
}