-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@toreda/verify",
"version": "0.12.3",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "https://github.com/toreda/verify",
"author": "Toreda, Inc.",
"sideEffects": false,
"keywords": [
"schema validation",
"json-schema",
"typescript"
],
"license": "MIT",
"description": "Automated validation. Eliminate edge cases with less code.",
"public": true,
"prettier": "@toreda/prettier-config",
"devDependencies": {
"@8hobbies/typedoc-plugin-404": "^2.3.0",
"@knodes/typedoc-plugin-code-blocks": "^0.23.4",
"@swc/core": "^1.11.31",
"@swc/jest": "^0.2.38",
"@toreda/build-tools": "^0.8.0",
"@toreda/eslint-config": "^2.2.0",
"@toreda/fate": "^0.7.0",
"@toreda/log": "^0.6.16",
"@toreda/prettier-config": "^1.0.1",
"@toreda/strong-types": "^0.28.5",
"@toreda/time": "^0.1.7",
"@toreda/types": "^2.16.0",
"@types/babel__traverse": "^7.20.7",
"@types/big.js": "^6.2.2",
"@types/eslint": "^9.6.1",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@typescript-eslint/typescript-estree": "^8.33.1",
"@typescript-eslint/utils": "^8.33.1",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.5",
"big.js": "^6.2.2",
"eslint": "8.56.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"gulp": "^5.0.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"madge": "^8.0.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typedoc": "~0.26.11",
"typedoc-plugin-coverage": "^3.4.1",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-include-example": "^1.4.2",
"typedoc-plugin-mdn-links": "^3.3.8",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^5.8.3"
},
"resolutions": {
"chokidar": "^3.0.0",
"glob-parent": "^5.1.2",
"source-map": "^0.7.4",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"eslint": "8.56.0"
},
"peerDependencies": {
"big.js": "^6.2.1"
},
"scripts": {
"build": "pnpm build:prod",
"build:prod": "pnpm gulp --prod",
"build:dev": "pnpm gulp --dev",
"test": "pnpm jest --coverage --maxWorkers=50%",
"test:dev": "pnpm jest --coverage=false --maxWorkers=25% --verbose=false",
"make:docs": "pnpm typedoc --options ./typedoc.config.js --plugin @8hobbies/typedoc-plugin-404 --plugin @knodes/typedoc-plugin-code-blocks",
"make:depgraph": "pnpm madge src/index.ts --image dependency-graph.png"
}
}