-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.62 KB
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
{
"name": "schema-dsl",
"version": "1.2.5",
"description": "简洁强大的JSON Schema验证库 - DSL语法 + String扩展 + 便捷validate",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"scripts": {
"test": "mocha test/unit/**/*.test.js",
"test:integration": "mocha test/integration/**/*.test.js",
"test:all": "mocha test/**/*.test.js",
"coverage": "nyc npm test",
"lint": "eslint lib/**/*.js",
"example": "node examples/dsl-style.js"
},
"keywords": [
"schema",
"validation",
"validator",
"dsl",
"json-schema",
"data-validation",
"form-validation",
"mongodb",
"mysql",
"postgresql",
"database-schema",
"i18n",
"internationalization",
"typescript",
"express",
"koa",
"fastify",
"rest-api",
"input-validation"
],
"author": "rocky <rockyshi1993@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vextjs/schema-dsl.git"
},
"bugs": {
"url": "https://github.com/vextjs/schema-dsl/issues"
},
"homepage": "https://github.com/vextjs/schema-dsl#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"express": "^5.2.1",
"joi": "^18.0.2",
"mocha": "^10.8.2",
"monsqlize": "^1.0.1",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"yup": "^1.7.1",
"zod": "^4.2.1"
}
}