-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
103 lines (103 loc) · 2.72 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
{
"name": "vue-form-json",
"version": "0.0.0-development",
"description": "Generate a vue form with validation and bulma style, from json",
"author": "14nrv",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve --open",
"prepare": "yarn build",
"build": "vue-cli-service build --target lib --name vue-form-json ./src/components/Form/Form.vue",
"lint": "vue-cli-service lint",
"test": "NODE_ENV=test vue-cli-service test:unit --coverage",
"test:tdd": "NODE_ENV=test vue-cli-service test:unit --coverage --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"
]
},
"lint-staged": {
"linters": {
"*.{js,vue}": "vue-cli-service lint"
},
"ignore": [
"dist/*.js"
]
},
"main": "./dist/vue-form-json.common.js",
"files": [
"dist/*.js"
],
"keywords": [
"vue",
"vuejs",
"form",
"generator",
"schema",
"json",
"bulma",
"validation",
"vee-validate"
],
"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": {
"@fortawesome/fontawesome-free": "^5.2.0",
"bulma": "^0.7.1",
"pug": "^2.0.3",
"ramda": "^0.25.0",
"slugify": "^1.3.1",
"stylus": "^0.54.5",
"vee-validate": "^2.1.2",
"vue": "^2.5.17"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/github": "^5.0.5",
"@semantic-release/npm": "^5.0.4",
"@vue/cli-plugin-babel": "^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-standard": "^3.0.1",
"@vue/test-utils": "1.0.0-beta.11",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"eslint-junit": "^1.0.1",
"eslint-plugin-jest": "^21.22.0",
"husky": "^1.0.0-rc.13",
"jest-junit": "^5.1.0",
"lint-staged": "^7.2.2",
"mwangaben-vthelpers": "^1.2.6-1",
"pug-plain-loader": "^1.0.0",
"semantic-release": "^15.9.16",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.5.17"
},
"jest-junit": {
"output": "coverage/junit/js-test-results.xml"
},
"eslint-junit": {
"output": "coverage/junit/js-eslint-results.xml"
},
"engines": {
"node": ">=8.3.0"
}
}