This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "mongodb-log-writer",
"version": "1.4.2",
"description": "A library for writing MongoDB logv2 messages",
"keywords": [
"mongodb",
"log",
"logv2"
],
"homepage": "https://github.com/mongodb-js/mongodb-log-writer",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/mongodb-log-writer.git"
},
"bugs": {
"url": "https://github.com/mongodb-js/mongodb-log-writer/issues"
},
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./.esm-wrapper.mjs"
},
"files": [
"LICENSE",
"lib",
"package.json",
"README.md",
".esm-wrapper.mjs"
],
"scripts": {
"lint": "eslint {src,test}/**/*.ts",
"testonly": "nyc mocha --colors -r ts-node/register test/*.ts",
"test": "npm run lint && npm run build && npm run testonly",
"build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs",
"prepack": "npm run build",
"compile-ts": "tsc -p tsconfig.json"
},
"license": "Apache-2.0",
"dependencies": {
"bson": "^4.5.1 || ^5.0.0 || ^6.0.0",
"heap-js": "^2.3.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.10",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.3.4",
"eslint": "^7.9.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "5.1.x",
"eslint-plugin-standard": "^5.0.0",
"gen-esm-wrapper": "^1.1.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.2.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.3.5"
}
}