-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 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
{
"name": "vue-reactive-form",
"version": "0.1.21",
"description": "A reactive form library, which can help manage form data. It's suitable for all kinds of Form UI.",
"author": "ronny1020",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rimraf build && rollup -c",
"test": "yarn test:unit",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint example/src/** src/** --fix",
"build:demo": "vue-cli-service build --dest build_example",
"publish:npm": "yarn build && yarn publish",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pre-commit": "lint-staged"
},
"main": "build/index.js",
"files": [
"build/"
],
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.2.4",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"core-js": "^3.6.5",
"esbuild": "^0.12.25",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.6.0",
"husky": "^7.0.2",
"jest": "^27.2.2",
"lint-staged": "^9.5.0",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.3",
"typescript": "^4.4.2",
"vue": "^3.2.4",
"vue-jest": "^5.0.0-0"
},
"bugs": {
"url": "https://github.com/ronny1020/vue-reactive-form/issues"
},
"directories": {
"example": "example",
"test": "tests"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/ronny1020/vue-reactive-form#readme",
"keywords": [
"vue",
"vue-reactive-form",
"reactive-form",
"form",
"form-control",
"form-group",
"form-input",
"form-validator",
"vue3",
"typescript",
"Composition API"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ronny1020/vue-reactive-form.git"
},
"typings": "build/index.d.ts"
}