-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "vue-auto-form-field",
"version": "0.1.4",
"private": false,
"main": "dist/vue-auto-form-field.umd.min.js",
"author": "Adrien Montagu <[email protected]> (https://www.linkedin.com/in/adrienmontagu/)",
"keywords": [
"vue",
"form",
"field",
"auto-form",
"auto-field",
"json",
"json-to-form",
"dynamic-form",
"dynamic-fied"
],
"scripts": {
"serve": "vuepress dev docs",
"build": "vue-cli-service build --target lib --name vue-auto-form-field ./src/index.js",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"axios": "^0.18.0",
"core-js": "^2.6.5",
"lodash.clonedeep": "^4.5.0",
"object-path": "^0.11.4",
"vue": "^2.6.10",
"vue-color": "^2.7.0",
"vue-router": "^3.0.3",
"vue2-dropzone": "^3.5.9",
"vuetify": "^1.5.14",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-e2e-cypress": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"@babel/runtime": "7.0.0-beta.55",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^8.1.7",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.21",
"vuepress": "^0.14.11"
},
"homepage": "https://amontagu.github.io/vue-auto-form-field/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AMontagu/vue-auto-form-field.git"
},
"bugs": {
"url": "https://github.com/AMontagu/vue-auto-form-field/issues"
},
"files": [
"dist/*",
"*.json",
"*.js",
"README*",
"LICENSE"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}