-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mongodb-resumetoken-decoder",
"version": "1.1.2",
"description": "A helper tool for decoding MongoDB change stream resume tokens",
"keywords": [
"mongodb",
"change",
"stream",
"resume",
"token"
],
"homepage": "https://github.com/mongodb-js/mongodb-resumetoken-decoder",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/mongodb-resumetoken-decoder.git"
},
"bugs": {
"url": "https://github.com/mongodb-js/mongodb-resumetoken-decoder/issues"
},
"main": "lib/index.js",
"bin": {
"mongodb-resumetoken-decoder": "bin/mongodb-resumetoken-decoder.js"
},
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./.esm-wrapper.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"types": "./lib/index.d.ts",
"files": [
"LICENSE-Community.txt",
"bin",
"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": "SSPL",
"dependencies": {
"bson": "^4.6.3"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"gen-esm-wrapper": "^1.1.0",
"mocha": "^8.1.3",
"mongodb": "^4.17.1",
"mongodb-runner": "^5.4.5",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}