-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
{
"name": "rest-data-validator",
"version": "2.1.0",
"description": "A versatile data validation library for RESTful APIs, supporting a wide range of data types and validation rules.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./cli": {
"require": "./dist/cli/cli.js",
"import": "./dist/cli/cli.mjs"
}
},
"bin": {
"rest-cli": "./dist/cli/cli.js"
},
"type": "module",
"scripts": {
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"build": "npm run clean && tsup && npm run postbuild",
"postbuild": "find dist -name '*.cts' -type f -delete",
"build:test": "tsc --module commonjs --outDir dist",
"test:debug": "jest --runInBand",
"test": "jest --coverage --coverageReporters=text lcov cobertura",
"check:updates": "ncu -u",
"exec:updates": "npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/SeanLuis/rest-data-validator.git"
},
"keywords": [
"validation",
"rest",
"api",
"data-validation",
"schema",
"typescript",
"javascript",
"sanitization",
"node",
"input",
"validator",
"validations",
"validate",
"hacktoberfest",
"sanitize"
],
"author": "Sean Luis Guada Rodriguez (https://sean-rodriguez.vercel.app)",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.4.5"
},
"dependencies": {
"commander": "^12.0.0",
"core-js": "^3.38.1",
"inquirer": "^9.2.20",
"js-yaml": "^4.1.0",
"reflect-metadata": "^0.2.2",
"ts-morph": "^22.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/SeanLuis/rest-data-validator/issues"
},
"homepage": "https://github.com/SeanLuis/rest-data-validator#readme"
}