This repository has been archived by the owner on Apr 28, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.65 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
72
73
74
75
76
77
78
{
"name": "form-render",
"description": "Yet another form render solution for vue",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "evillt/form-render"
},
"author": "evillt <ijoec123@gmail.com> (https://evila.me)",
"files": [
"dist",
"lib"
],
"main": "dist/form-render.cjs.js",
"types": "types.d.ts",
"scripts": {
"lint": "xo",
"prepublishOnly": "yarn build",
"build": "bili",
"example": "dvan --config example/dvan.config.js --serve"
},
"dependencies": {},
"devDependencies": {
"@vue/babel-plugin-transform-vue-jsx": "^1.0.0-beta.3",
"babel-eslint": "^10.0.1",
"bili": "^4.4.0",
"dvan": "^2.4.0",
"element-ui": "^2.6.3",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"prettier": "^1.15.2",
"rollup-plugin-vue": "^4.7.2",
"vue": "^2.6.10",
"vue-auto-routes": "^1.4.0",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.10",
"xo": "^0.23.0"
},
"xo": {
"parser": "babel-eslint",
"extends": [
"rem",
"plugin:prettier/recommended"
],
"rules": {
"unicorn/filename-case": false,
"no-unused-vars": 1,
"new-cap": 1
},
"ignores": [
"example/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"example/**"
]
}
}