-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 940 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 940 Bytes
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
{
"name": "@lms5400/easy-validation",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git@github.com:LMS007/easy-validation.git"
},
"description": "Simple JSON schema validation. Ideal for request payloads",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest --config ./jest.config.json",
"build": "tsc",
"lint": "eslint src --ext .js,.ts"
},
"author": "kkeating@gmail.com",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}