-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "vue-prop-validation-helper",
"version": "4.0.1",
"description": "A Vue validator lib that provide utilities to help you validate your properties",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist/**/*"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:report": "npm run test:coverage && cat ./coverage/lcov.info | npx coveralls",
"build": "tsc",
"prerelease": "npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhoyer/vue-validator-extras.git"
},
"keywords": [
"helper",
"props",
"validation",
"validator",
"vue"
],
"author": "Vinícius Hoyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/vhoyer/vue-validator-extras/issues"
},
"homepage": "https://github.com/vhoyer/vue-validator-extras#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.47.0",
"np": "^9.2.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}