-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "type-sentry",
"version": "0.0.9",
"description": "A powerful TypeScript library for runtime type checking and validation using decorators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"example": "ts-node examples/basic-usage.ts"
},
"keywords": [
"typescript",
"validation",
"decorators",
"type-checking",
"runtime-validation"
],
"author": "Najam Shehzad",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NajamShehzad/type-sentry.git"
},
"bugs": {
"url": "https://github.com/NajamShehzad/type-sentry/issues"
},
"homepage": "https://github.com/NajamShehzad/type-sentry#readme",
"peerDependencies": {
"class-validator": "^0.14.0",
"class-transformer": "^0.5.1"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.11.12",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.0.0"
}
}