UNPKG

1.82 kBJSONView Raw
1{
2 "name": "@middy/validator",
3 "version": "4.2.1",
4 "description": "Validator middleware for the middy framework",
5 "type": "module",
6 "engines": {
7 "node": ">=16"
8 },
9 "engineStrict": true,
10 "publishConfig": {
11 "access": "public"
12 },
13 "main": "./index.cjs",
14 "module": "./index.js",
15 "exports": {
16 ".": {
17 "import": {
18 "types": "./index.d.ts",
19 "default": "./index.js"
20 },
21 "require": {
22 "types": "./index.d.ts",
23 "default": "./index.cjs"
24 }
25 },
26 "./transpile": {
27 "import": {
28 "types": "./transpile.d.ts",
29 "default": "./transpile.js"
30 },
31 "require": {
32 "types": "./transpile.d.ts",
33 "default": "./transpile.cjs"
34 }
35 }
36 },
37 "types": "index.d.ts",
38 "files": [
39 "index.js",
40 "index.cjs",
41 "index.d.ts",
42 "transpile.js",
43 "transpile.cjs",
44 "transpile.d.ts"
45 ],
46 "scripts": {
47 "test": "npm run test:unit",
48 "test:unit": "ava",
49 "test:benchmark": "node __benchmarks__/index.js"
50 },
51 "license": "MIT",
52 "keywords": [
53 "Lambda",
54 "Middleware",
55 "Serverless",
56 "Framework",
57 "AWS",
58 "AWS Lambda",
59 "Middy",
60 "Validator",
61 "JSON Schema"
62 ],
63 "author": {
64 "name": "Middy contributors",
65 "url": "https://github.com/middyjs/middy/graphs/contributors"
66 },
67 "repository": {
68 "type": "git",
69 "url": "github:middyjs/middy",
70 "directory": "packages/validator"
71 },
72 "bugs": {
73 "url": "https://github.com/middyjs/middy/issues"
74 },
75 "homepage": "https://middy.js.org",
76 "dependencies": {
77 "@middy/util": "4.2.1",
78 "ajv-cmd": "0.2.2"
79 },
80 "devDependencies": {
81 "@middy/core": "4.2.1",
82 "@types/http-errors": "^2.0.0",
83 "ajv-bsontype": "^1.0.7"
84 },
85 "gitHead": "11f14b78bac5486ae104de735f8d588a385e93af"
86}