-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.99 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": "vue-hooks-form",
"version": "0.3.1",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start": "vue-cli-service serve example/main.ts",
"build": "rollup -c",
"dev": "microbundle watch",
"build:docs": "cd docs && yarn build",
"test": "jest --coverage",
"gh-pages": "yarn build:docs && gh-pages -d docs/src/.vuepress/dist"
},
"dependencies": {
"async-validator": "^3.4.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"lodash.setwith": "^4.3.2",
"lodash.topath": "^4.5.2",
"vue-demi": "^0.13.11"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^24.0.19",
"@types/lodash.get": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/lodash.setwith": "^4.3.6",
"@types/lodash.topath": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^7.0.0-0",
"gh-pages": "^3.1.0",
"materialize-css": "^1.0.0-rc.2",
"rollup": "^2.32.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3",
"vue": "^3.1.5",
"vue-jest": "^5.0.0-0",
"yarn": "^1.22.10"
}
}