-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
67 lines (67 loc) · 1.27 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
{
"name": "myzod",
"version": "1.12.0",
"description": "",
"main": "./libs/index.js",
"types": "./libs/index.d.ts",
"scripts": {
"test": "mocha \"test/**/*test.ts\"",
"build": "rm -rf ./libs && tsc",
"pub": "npm t && npm run build && npm publish",
"bench": "find test -path '*.benchmark.ts' | xargs benchmonkey",
"prettier": "prettier --write '**/*.ts'"
},
"keywords": [
"typescript",
"schema",
"validation",
"type",
"inference",
"zod"
],
"repository": {
"type": "git",
"url": "https://github.com/davidmdm/myzod.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.2",
"benchmonkey": "^0.0.8",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text"
],
"sourceMap": true,
"instrument": true
},
"mocha": {
"require": [
"ts-node/register"
],
"timeout": 5000,
"exit": true
},
"benchmonkey": {
"require": [
"ts-node/register"
]
}
}