-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"name": "lambda-openapi-validator",
"version": "0.0.4",
"description": "Input validation using OpenAPI 3.0 definitions and ajv",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest --passWithNoTests",
"test:ci": "npm run lint && npm run test:coverage",
"test:coverage": "jest --passWithNoTests --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srax47/lambda-openapi-validator.git"
},
"keywords": [
"ajv",
"swagger",
"openapi",
"request",
"validation",
"validator",
"jsonschema"
],
"bugs": {
"url": "https://github.com/srax47/lambda-openapi-validator/issues"
},
"homepage": "https://github.com/srax47/lambda-openapi-validator",
"author": "Rami Jarrar",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.17.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"typescript": "5.5.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20"
}
}