-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
68
69
70
{
"name": "@unkn0wn-root/ts-validator",
"version": "0.2.2",
"description": "A TypeScript runtime validation library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --verbose",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"prepublishOnly": "npm run build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"collectCoverageFrom": [
"*.ts",
"!*.d.ts",
"!__tests__/**/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"keywords": [
"typescript",
"validation",
"schema",
"runtime",
"type-safe"
],
"author": "unkn0wn-root",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unkn0wn-root/ts-validator.git"
},
"bugs": {
"url": "https://github.com/unkn0wn-root/ts-validator/issues"
},
"homepage": "https://github.com/unkn0wn-root/ts-validator#readme"
}