-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
124 lines (124 loc) · 2.93 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@adonisjs/validator",
"description": "Validator for adonis framework",
"version": "13.0.2-3",
"engines": {
"node": ">=18.16.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"build",
"!build/benchmarks",
"!build/tests"
],
"exports": {
".": "./build/index.js",
"./validator_provider": "./build/providers/validator_provider.js",
"./types": "./build/src/types.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"clean": "del-cli build",
"typecheck": "tsc --noEmit",
"compile": "npm run lint && npm run clean && tsc",
"copy:files": "copyfiles \"templates/**/*.txt\" build",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"release": "np --message=\"chore(release): %s\"",
"version": "npm run build",
"benchmarks": "node build/benchmarks/index.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels .github/labels.json adonisjs/validator",
"quick:test": "node --enable-source-maps --loader=ts-node/esm bin/test.ts"
},
"devDependencies": {
"@adonisjs/bodyparser": "^10.0.1",
"@adonisjs/core": "^6.2.2",
"@adonisjs/eslint-config": "^1.2.1",
"@adonisjs/prettier-config": "^1.2.1",
"@adonisjs/tsconfig": "^1.2.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@japa/assert": "^2.1.0",
"@japa/runner": "^3.1.1",
"@swc/core": "^1.3.106",
"@types/benchmark": "^2.1.5",
"@types/node": "^20.11.8",
"benchmark": "^2.1.4",
"c8": "^9.1.0",
"class-validator": "^0.14.1",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"execa": "^7.2.0",
"github-label-sync": "^2.3.1",
"husky": "^9.0.6",
"joi": "^17.12.0",
"kleur": "^4.1.5",
"np": "^9.2.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"dependencies": {
"@poppinss/utils": "^6.7.1",
"@types/luxon": "^3.4.2",
"@types/validator": "^13.11.8",
"luxon": "^3.4.4",
"normalize-url": "^8.0.0",
"tmp-cache": "^1.1.0",
"validator": "^13.11.0"
},
"peerDependencies": {
"@adonisjs/core": "^6.2.0"
},
"author": "virk,adonisjs",
"license": "MIT",
"homepage": "https://github.com/adonisjs/validator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/validator.git"
},
"bugs": {
"url": "https://github.com/adonisjs/validator/issues"
},
"keywords": [
"validator",
"schema-validation",
"adonisjs",
"adonisjs-validator"
],
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"np": {
"message": "chore(release): %s",
"tag": "next",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"test_factories/**",
".yalc/**"
]
}
}