-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 991 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 991 Bytes
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
{
"name": "knight-validation",
"version": "4.0.9",
"description": "A validation lib",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"build": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderitter/knight-validation.git"
},
"keywords": [
""
],
"author": "Coderitter GmbH",
"bugs": {
"url": "https://github.com/coderitter/knight-validation/issues"
},
"homepage": "https://github.com/coderitter/knight-validation#readme",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.4",
"chai": "^5.2.0",
"knight-log": "^2.0.0-rc.3",
"mocha": "^11.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"knight-misfit": "^1.0.0"
},
"peerDependencies": {
"knight-log": "^2.0.0-rc.3"
}
}