-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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": "reviewed",
"description": "Ergonomic, extensible and lightweight validators.",
"version": "0.11.0",
"license": "MIT",
"author": "Joel Lefkowitz",
"repository": "https://github.com/joellefkowitz/reviewed",
"homepage": "https://joellefkowitz.github.io/reviewed",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"validators",
"guards",
"parsers"
],
"packageManager": "yarn@4.1.1",
"metadata": {
"publisher": "npm",
"languages": [
"TypeScript"
],
"frameworks": [],
"paradigms": [
"Functional"
],
"lifecycle": "Alpha"
},
"scripts": {
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "cspell . --dot --gitignore && eslint . --fix && tsc --noEmit && trufflehog3",
"format": "prettier . --write",
"build": "tsc",
"test": "jest",
"docs": "typedoc --options docs/typedoc/typedoc.json && ts-node ./docs/typedoc/assets.ts"
},
"resolutions": {
"cliui": "^8.0.1",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "29.0.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cspell": "^8.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"pinst": "^3.0.0",
"prettier": "^3.0.0",
"prettier-plugin-jsdoc": "^1.3.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2",
"typescript": "~5.3.0"
}
}