-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.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
{
"name": "@powerkernel/mongodb-client",
"version": "1.0.5",
"description": "MongoDB client used by Power Kernel projects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"release": "npx standard-version && git push --follow-tags origin main",
"test": "jest --coverage --detectOpenHandles",
"build": "npm run clean && tsc",
"clean": "del ./dist/*",
"lint": "eslint ./src --ext .ts --fix",
"prepare": "husky install"
},
"keywords": [
"power",
"kernel",
"mongodb",
"client"
],
"author": {
"name": "Harry Tang",
"email": "[email protected]",
"url": "https://powerkernel.com"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"del-cli": "6.0.0",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"jest": "29.7.0",
"mongodb-memory-server-core": "10.1.3",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"dependencies": {
"mongodb": "4.17.2"
}
}