-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 869 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 869 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
32
33
34
{
"name": "go-mongo-db",
"version": "2.2.0",
"description": "Allows for quick and simple access to a MongoDB database.",
"license": "MIT",
"keywords": [],
"author": "MidSpike",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"husky": "is-ci || husky install",
"lint": "echo \"No linting rules defined\"",
"build": "npx tsc --build",
"prepare": "npm run husky && npm run lint && npm run build",
"test": "npm run prepare"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"husky": "9.1.7",
"is-ci": "4.1.0",
"typescript": "5.8.2"
},
"dependencies": {
"go-mongo-db": "file:",
"mongodb": "6.14.2"
}
}