-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "cast.ts",
"version": "1.14.3",
"description": "Validation parsers with static type inference. cast.ts makes it easy to validate data from RESTful API",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"scripts": {
"report": "nyc npm run mocha",
"mocha": "ts-mocha src/core.spec.ts",
"type-check": "tsc --noEmit",
"test": "run-p mocha type-check",
"build": "run-s clean tsc",
"clean": "rimraf dist",
"tsc": "tsc -p ."
},
"keywords": [
"validation",
"schema",
"type",
"inference",
"typescript",
"zod",
"cast",
"RESTful",
"API"
],
"author": {
"name": "Beeno Tung",
"email": "[email protected]",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"chai": "^4.3.10",
"gen-ts-type": "^1.8.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/cast.ts.git"
},
"bugs": {
"url": "https://github.com/beenotung/cast.ts/issues"
},
"homepage": "https://github.com/beenotung/cast.ts#readme"
}