-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
{
"name": "@neatau/dto",
"description": "Functionality for defining, validating and consuming DTOs in your application.",
"version": "0.2.0",
"keywords": [
"dto",
"validation"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --coverage",
"publish": "yarn build && yarn npm publish --access public",
"docs": "npx typedoc --out typedocs src"
},
"maintainers": [
{
"name": "Marty Wallace",
"email": "marty@neat.au",
"url": "https://martywallace.com"
}
],
"packageManager": "yarn@4.9.3",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"clone-deep": "^4.0.1",
"deep-equal": "^2.2.3",
"json-stable-stringify": "^1.3.0",
"jsonwebtoken": "^9.0.2",
"zod": "^4.0.17"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@types/clone-deep": "^4.0.4",
"@types/deep-equal": "^1.0.4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}