forked from colinhacks/zod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "zod",
"version": "1.11.11",
"description": "TypeScript-first schema declaration and validation library with static type inference",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/colinhacks/zod"
},
"author": "Colin McDonnell <[email protected]>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/colinhacks/zod/issues"
},
"homepage": "https://github.com/colinhacks/zod",
"dependencies": {},
"tags": [
"typescript",
"schema",
"validation",
"type",
"inference"
],
"keywords": [
"typescript",
"schema",
"validation",
"type",
"inference"
],
"scripts": {
"clean": "rm -rf lib/*",
"build": "yarn run clean && tsc --p tsconfig.package.json",
"buildall": "yarn add [email protected] && yarn build && yarn add [email protected] && yarn build && yarn add [email protected] && yarn build && yarn add [email protected] && yarn build && yarn add [email protected] && yarn build && yarn add [email protected] && yarn build && yarn add typescript@4 && yarn build && yarn add [email protected] && yarn build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --coverage && yarn run badge",
"testone": "jest",
"badge": "make-coverage-badge --output-path ./coverage.svg",
"prepublishOnly": "npm run build",
"play": "nodemon -e ts -w . -x ts-node src/playground.ts --project tsconfig.package.json"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"make-coverage-badge": "^1.2.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.5"
}
}