forked from koumoul-dev/vuetify-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.89 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
{
"name": "@koumoul/vjsf",
"version": "1.10.3",
"description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
"main": "dist/main.js",
"scripts": {
"lint": "eslint --ext js,vue .",
"build": "rm -rf dist && webpack && cp lib/VJsf.css dist/main.css",
"dev": "NODE_ENV=development webpack-dev-server",
"prepublish": "npm run lint && npm test && npm run build && npm run doc-build",
"postpublish": "gh-pages-multi deploy -v -s doc/dist -t latest",
"test": "jest",
"test-update": "jest --updateSnapshot",
"doc-link": "npm link && pushd doc && npm link @koumoul/vjsf && popd",
"doc-dev": "nuxt doc",
"doc-start": "nuxt build doc && nuxt start doc",
"doc-build": "BASE=/vuetify-jsonschema-form/latest/ nuxt generate doc"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.{js,vue}"
],
"snapshotSerializers": [
"jest-serializer-vue"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/vuetify-jsonschema-form.git"
},
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koumoul-dev/vuetify-jsonschema-form/issues"
},
"homepage": "https://github.com/koumoul-dev/vuetify-jsonschema-form#readme",
"dependencies": {
"markdown-it": "^8.4.2",
"match-all": "^1.2.5",
"property-expr": "^1.5.1",
"vuedraggable": "^2.23.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@koumoul/gh-pages-multi": "^0.6.0",
"@mdi/font": "^3.8.95",
"@nuxtjs/axios": "^5.9.0",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/test-utils": "^1.0.3",
"ajv": "^6.12.0",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"fuse.js": "^3.4.6",
"highlight.js": "^9.17.1",
"hjson": "^3.1.2",
"jest": "^26.1.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.8.0",
"nuxt": "^2.13.1",
"random-words": "^1.1.0",
"stringify-object": "^3.3.0",
"vue-axios": "^2.1.5",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.3.2",
"webpack": "^4.39.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"yaml": "^1.7.1"
}
}