-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.07 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
79
80
81
82
83
84
85
86
{
"name": "so-form",
"version": "0.1.2",
"description": "generate form by json schema for vue.js",
"main": "dist/so-form.min.js",
"author": "ws456999",
"license": "ISC",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build": "webpack --mode production",
"deploy": "sh ./deploy.sh",
"prepublish": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext .js,.vue src"
},
"repository": {
"type": "git",
"url": "https://github.com/ws456999/so-form.git"
},
"keywords": [
"vue",
"form",
"validation"
],
"dependencies": {
"mitt": "^1.1.3",
"object.omit": "^3.0.0",
"object.pick": "^1.3.0",
"set-object-path": "azer/set-object-path",
"vue": "^2.5.17"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@vue/babel-preset-app": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^7.0.0-bridge.0",
"babel-helper-vue-jsx-merge-props": "^2.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"bulma": "^0.7.2",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"element-ui": "^2.4.9",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^1.1.3",
"iview": "^3.1.5",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"node-sass": "^4.10.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"viewcode": "^0.0.27",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"vuepress": "^0.14.4",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
],
"src/**/*.vue": [
"prettier --write",
"git add"
]
}
}