-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "simple-connection",
"version": "4.1.0",
"description": "Simple connection wrapper to MongoDB using ES6 modules and ESM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsup",
"test": "npm run test:coverage && npm run test:integration",
"test:unit": "node --import tsx --test ./tests/unit/*.test.ts",
"test:integration": "node --import tsx --test ./tests/integration/*.spec.ts",
"test:coverage": "c8 npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flpms/simple-connection.git"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mongo",
"node",
"es6",
"esm"
],
"type": "module",
"author": "Filipe M. Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/flpms/simple-connection/issues"
},
"homepage": "https://github.com/flpms/simple-connection#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/chai": "^4.3.16",
"@types/node": "^20.14.7",
"@types/sinon": "^17.0.3",
"c8": "^9.1.0",
"chai": "^4.2.0",
"eslint": "^9.6.0",
"sinon": "^9.2.0",
"tsup": "^8.1.0",
"tsx": "^4.11.0",
"typescript": "^4.5.2"
},
"dependencies": {
"mongodb": "^6.6.2"
}
}