-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 856 Bytes
/
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
{
"name": "ts-json-object",
"version": "0.4.1",
"description": "JSON typescript runtime validation",
"main": "dist/src/index.js",
"scripts": {
"test": "node dist/test/index.js",
"build": "node_modules/typescript/bin/tsc",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moshegottlieb/ts-json-object.git"
},
"keywords": [
"json",
"typescript",
"validation",
"decorator",
"reflection",
"metadata"
],
"author": "Moshe Gottlieb",
"license": "MIT",
"bugs": {
"url": "https://github.com/moshegottlieb/ts-json-object/issues"
},
"homepage": "https://github.com/moshegottlieb/ts-json-object#readme",
"devDependencies": {
"@types/node": "^20.10.4",
"typescript": "^5.5.2"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
}
}