-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
67 lines (67 loc) · 2.18 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
{
"name": "@formschema/native",
"version": "2.0.0-beta.6",
"description": "Vue component form based on JSON Schema",
"main": "dist/FormSchema.esm.min.js",
"browser": "dist/FormSchema.umd.min.js",
"types": "types/index.d.ts",
"scripts": {
"playground": "cd playground && npm run serve",
"playground:install": "cd playground && npm i",
"test": "vue-cli-service test:unit",
"testdebug": "node --inspect-brk ./node_modules/@vue/cli-service/bin/vue-cli-service.js test:unit --runInBand",
"lint": "eslint src/**/* tests/**/*.ts tests/**/specs/**/*.ts",
"lint:fix": "eslint --fix src/**/* tests/**/*.ts tests/**/specs/**/*.ts",
"gimtoc": "gimtoc -f README.md -s 'Table of Contents' -o README.md",
"readme": "vuedoc.md -c && npm run gimtoc && git diff README.md",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/formschema/native.git"
},
"keywords": [
"vue",
"form",
"json",
"schema",
"jsonschema"
],
"author": "Sébastien Demanou",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/formschema/native/issues"
},
"homepage": "https://gitlab.com/formschema/native",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@types/jest": "^26.0.10",
"@types/node": "^15.0.1",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@vue/cli-plugin-unit-jest": "^4.5.4",
"@vue/cli-service": "^4.5.4",
"@vue/test-utils": "^1.0.4",
"@vuedoc/md": "^3.0.0-beta2",
"@vuedoc/parser": "^3.0.0-beta2",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"gimtoc": "^1.3.3",
"jest-serializer-vue": "^2.0.2",
"rollup": "^2.26.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.2.0",
"tslib": "^2.0.1",
"typescript": "^4.2.4",
"typescript-eslint-parser": "^22.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}