-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.58 KB
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
{
"name": "zod",
"version": "1.7.0",
"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/vriad/zod"
},
"author": "Colin McDonnell <colin@vriad.com>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/vriad/zod/issues"
},
"homepage": "https://github.com/vriad/zod",
"dependencies": {},
"tags": [
"typescript",
"schema",
"validation",
"type",
"inference"
],
"keywords": [
"typescript",
"schema",
"validation",
"type",
"inference"
],
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
],
"scripts": {
"clean": "rm -rf lib/*",
"build": "yarn run clean && tsc --p tsconfig.package.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json --coverage && yarn run badge",
"testone": "jest --config jestconfig.json ",
"badge": "make-coverage-badge --output-path ./coverage.svg",
"prepare": "npm run build",
"play": "nodemon -e ts -w . -x ts-node src/playground.ts"
},
"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.2"
}
}