-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.81 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
{
"name": "@trojs/validator",
"version": "12.0.4",
"description": "Object validator",
"main": "src/validator.js",
"type": "module",
"files": [
"src/validator.js",
"types/validator.d.ts"
],
"source": "src/validator.js",
"module": "src/validator.js",
"types": "./types/validator.d.ts",
"scripts": {
"lint": "eslint src",
"lint:report": "eslint src --config eslint.config.js -f json -o report.json",
"lint:fix": "eslint src --fix",
"lint:types": "tsc --noEmit --project tsconfig.json --skipLibCheck",
"generate:types": "rm -rf types && tsc --skipLibCheck --declaration --allowJs --emitDeclarationOnly --outDir types src/validator.js",
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=./coverage/lcov.info",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trojs/validator.git"
},
"author": {
"name": "Pieter Wigboldus",
"url": "https://trojs.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/trojs/validator/issues"
},
"homepage": "https://github.com/trojs/validator#readme",
"devDependencies": {
"@trojs/lint": "^0.4.0",
"@types/node": "^24.1.0",
"deno": "^2.4.4",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"jscpd": "^4.0.5",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 20"
},
"keywords": [
"objects",
"validator"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
}
}