-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 832 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 832 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
{
"name": "@meta-system/mongodb-db-protocol",
"version": "3.0.2",
"description": "A DB protocol for mongo and Meta-System",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc -p tsconfig.build.json",
"test": "mocha --exit"
},
"type": "module",
"author": "mapikit",
"license": "ISC",
"devDependencies": {
"@meta-system/object-definition": "^2.0.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^1.0.0",
"mocha": "^10.2.0",
"mongodb-memory-server": "^5.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"mongodb": "^5.6.0"
}
}