-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
67
68
{
"name": "@thetc/zonfig",
"version": "0.1.0",
"description": "A simple library to define schemas for configs.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"format-check": "prettier --check src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technocreatives/zonfig.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"config",
"nestjs",
"typescript",
"zod"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/technocreatives/zonfig/issues"
},
"homepage": "https://github.com/technocreatives/zonfig#readme",
"devDependencies": {
"@nestjs/testing": "^9.2.0",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@types/node": "^18.11.9",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"lodash": "^4.17.21",
"zod": "^3.19.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
]
},
"files": [
"dist/"
]
}