-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "typebox-validation-util",
"version": "1.0.6",
"main": "dist/src/index.js",
"description": "Validate data using typebox in a single line",
"types": "dist/src/index.d.ts",
"typings": "dist/src/index.d.ts",
"author": "Pierre Dahmani <hi@pierre-dev.com>",
"license": "MIT",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"dev": "nodemon --watch src --watch test --ext ts,json --exec 'yarn compile && yarn start'",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"start": "node --enable-source-maps ./dist/src/index.js",
"test": "jest --runInBand ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/xddq/typebox-validation-util.git"
},
"keywords": [
"JSON schema",
"typebox-validation-util",
"util",
"schema",
"typescript",
"typebox",
"ts",
"validate",
"parse",
"validation",
"parsing",
"IO",
"cli"
],
"peerDependencies": {
"@sinclair/typebox": "^0.32.31"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "7.24.1",
"@jest/globals": "29.7.0",
"@sinclair/typebox": "^0.32.31",
"@tsconfig/node18": "18.2.4",
"@types/jest": "29.5.12",
"@types/node": "18.16.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.40.0",
"jest": "29.7.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"typescript": "5.3.3"
},
"packageManager": "yarn@3.5.1"
}