-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "dilswer",
"version": "2.1.1",
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"license": "MIT",
"repository": {
"url": "https://github.com/ncpa0/Dilswer"
},
"author": {
"name": "Szymon Bretner (ncpa0cpl)",
"url": "https://github.com/ncpa0cpl"
},
"description": "Data validation library with TypeScript integration.",
"keywords": [
"data",
"type",
"validator",
"validation",
"typescript",
"json",
"schema",
"json-schema"
],
"scripts": {
"build": "node ./scripts/build.cjs",
"test:tsc": "tsc --noEmit",
"test:lint": "eslint ./src/**/*.ts",
"test:unit": "jest --coverage",
"benchmark": "NODE_PATH=/usr/local/lib/node_modules node ./benchmark/fast-validator.js"
},
"devDependencies": {
"@ncpa0cpl/nodepack": "^2.3.0",
"@swc/core": "^1.3.82",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ajv": "^8.12.0",
"axios": "^1.5.0",
"crypto": "^1.0.1",
"esbuild": "0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"git-hook-tasks": "ncpa0cpl/git-hook-tasks",
"husky": "^8.0.3",
"jest": "^29.6.4",
"pr-changelog-gen": "^1.1.3",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/json-schema": "^7.0.12"
},
"packageManager": "[email protected]",
"sideEffects": false
}