-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "typura",
"version": "0.0.0-autorel",
"description": "Simple, extensible, and reliable runtime input validation for TS/JS.",
"keywords": [
"joi",
"zod",
"myzod",
"joi-like",
"validation",
"runtime",
"type",
"typescript",
"javascript"
],
"sponsor": {
"url": "https://aeroview.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeroview/typura.git"
},
"homepage": "https://github.com/aeroview/typura",
"license": "MIT",
"author": "Marc H. Weiner <marc@aeroview.io> (https://aeroview.io)",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"!dist/**/*.map",
"!dist/**/*.spec.*",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "c8 hoare 'src/**/*.spec.ts' && c8 report -r text -r html",
"lint": "eslint ./ --ext .js,.ts",
"build": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"c8": "^9.1.0",
"eslint": "^8.39.0",
"hoare": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}