forked from tianhuil/ts-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.28 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@tianhuil/ts-mongo",
"version": "2.2.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/tianhuil/ts-mongo.git"
},
"engines": {
"node": ">=18.13.0 <21.0.0"
},
"scripts": {
"assert": ". ./assert.sh",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "eslint -c .eslintrc.js",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./pkg-tsconfig/tsconfig.esm.json",
"build:cjs": "tsc -p ./pkg-tsconfig/tsconfig.cjs.json",
"prebuild": "npm run prettier && npm run lint && npm run typecheck && npm run assert && npm run jest"
},
"keywords": [],
"author": "Tianhui Michael Li",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^4.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.8.7",
"@typescript-eslint/parser": "^5.54.0",
"dotenv": "^16.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"jest-environment-node": "^28.0.0",
"merge": "^2.1.1",
"mongodb": "^6.2.0",
"np": "^8.0.4",
"prettier": "^2.8.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"type-assertions": "^1.1.0",
"typescript": "^4.9.5",
"zod": "^3.22.3"
},
"pnpm": {
"overrides": {
"@babel/traverse": ">=7.23.2",
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"got@<11.8.5": ">=11.8.5",
"semver": ">=7.5.2",
"word-wrap": ">=1.2.4",
"braces": ">=3.0.3"
}
},
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}