-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 836 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 836 Bytes
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
{
"name": "@apatheticwes/validation",
"version": "1.0.3",
"description": "A lightweight schema-based validation librarie, with a holistic approach to asynchronicity",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -b && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"validation",
"vue",
"vue3",
"schema"
],
"author": "wes hatch",
"license": "MIT",
"dependencies": {
"@vuelidate/validators": "^2.0.0-alpha.5",
"vue-demi": "^0.6.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"rollup": "^2.37.1",
"typescript": "^4.1.3",
"vue": "3.0.5"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
}
}