-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "vue-tiny-validator",
"version": "0.0.2",
"description": "Tiny form validation tool for Vue 3",
"types": "./dist/vue-tiny-validator.d.ts",
"module": "./dist/vue-tiny-validator.es.js",
"main": "./dist/vue-tiny-validator.umd.js",
"unpkg": "./dist/vue-tiny-validator.umd.js",
"jsdelivr": "./dist/vue-tiny-validator.umd.js",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/vue-tiny-validator.es.js",
"require": "./dist/vue-tiny-validator.umd.js"
}
},
"scripts": {
"test": "jest --coverage",
"dev": "vite --open",
"build": "vite build && yarn build:types",
"build:types": "tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frandiox/vue-tiny-validator.git"
},
"keywords": [
"vue",
"vue3",
"form",
"validate",
"typescript"
],
"author": "Fran Dios <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/frandiox/vue-tiny-validator/issues"
},
"homepage": "https://github.com/frandiox/vue-tiny-validator#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.7",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"tsc": "^1.20150623.0",
"typescript": "^4.2.3",
"vite": "^2.1.2",
"vue": "^3.0.7"
}
}