forked from 14nrv/vue-form-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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
{
"name": "vue-json-form",
"version": "0.1.0",
"description": "Generate a vue form with validation, with bulma style, from json",
"author": "14nrv",
"license": "MIT",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "NODE_ENV=test vue-cli-service test:unit --coverage",
"test:tdd": "NODE_ENV=test vue-cli-service test:unit --coverage --watchAll"
},
"main": "src/components/Form",
"files": [
"src/*",
"dist/*",
"public/*"
],
"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.0-beta.8",
"vue": "^2.5.17"
},
"devDependencies": {
"@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-plugin-jest": "^21.22.0",
"mwangaben-vthelpers": "^1.2.3",
"pug-plain-loader": "^1.0.0",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.5.17"
}
}