-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
118 lines (118 loc) · 3.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vue-form-json",
"version": "0.0.0-development",
"description": "Generate a vue form with validation from an array",
"author": "14nrv",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve --open",
"prepublishOnly": "yarn build",
"build": "vue-cli-service build --formats commonjs,umd-min --target lib --name vue-form-json ./src/components/Form/Form.vue",
"build:report": "yarn build --report",
"lint": "NODE_ENV=production vue-cli-service lint --no-fix",
"lint:fix": "NODE_ENV=production vue-cli-service lint",
"test": "NODE_ENV=test vue-cli-service test:unit --coverage",
"test:tdd": "yarn test --watchAll",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"footer-max-line-length": [
1,
"always",
100
]
}
},
"lint-staged": {
"*.{js,vue}": "yarn lint"
},
"main": "./dist/vue-form-json.common.js",
"unpkg": "./dist/vue-form-json.umd.min.js",
"files": [
"dist"
],
"keywords": [
"form-builder",
"form-generator",
"form-json",
"form",
"vue-json-form",
"vue",
"vue.js",
"vuejs",
"generator",
"form-validation",
"bulma"
],
"repository": {
"type": "git",
"url": "https://github.com/14nrv/vue-form-json.git"
},
"bugs": {
"url": "https://github.com/14nrv/vue-form-json/issues"
},
"homepage": "https://github.com/14nrv/vue-form-json#readme",
"dependencies": {
"humps": "^2.0.1",
"ramda": "^0.27.0",
"slugify": "^1.4.7",
"vee-validate": "^3.4.5"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@vue/babel-preset-app": "^4.5.11",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-unit-jest": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/test-utils": "1.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-junit": "^1.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.7.0",
"husky": "^4.2.5",
"jest-junit": "^11.0.1",
"jest-vue-matcher": "^2.0.0",
"lint-staged": "^10.2.11",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"semantic-release": "^17.1.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"jest-junit": {
"output": "coverage/junit/js-test-results.xml"
},
"eslint-junit": {
"output": "coverage/junit/js-eslint-results.xml"
},
"engines": {
"node": ">=12.18.2"
}
}