-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 KB
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
{
"name": "@discue/mongodb-resource-client",
"author": "Stefan Pfaffel",
"license": "MIT",
"version": "1.0.0",
"description": "Simple wrapper around mongodb client allowing easier managing of resources",
"main": "lib/index",
"type": "module",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./aggregations": "./lib/aggregations.js",
"./datatypes": "./lib/types.js"
},
"typesVersions": {
"*": {
".": [
"lib/index.d.ts"
],
"./aggregations": [
"lib/aggregations.d.ts"
],
"./datatypes": [
"lib/datatypes.d.ts"
]
}
},
"scripts": {
"test": "mocha test/spec/**/*.spec.js --check-leaks --timeout 7500 --file test/global-mocha-setup.js",
"lint": "eslint -c .eslintrc.js lib",
"push-incl-tags": "git push --follow-tags origin main",
"publish-npm": "npm publish --access public",
"update-docs": "bash -c ./release.sh",
"remove-types": "find lib -name \"*.d.ts\" -type f -delete",
"create-types": "npx tsc lib/index.js --declaration --emitDeclarationOnly --allowJs && npx tsc lib/types.js --declaration --emitDeclarationOnly --allowJs",
"release-generic": "npm run push-incl-tags && npm run create-types && npm run publish-npm && npm run remove-types",
"release": "npm run update-docs && standard-version && npm run release-generic",
"release-minor": "npm run update-docs && standard-version --release-as minor && npm run release-generic"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discue/mongodb-resource-client.git"
},
"bugs": {
"url": "https://github.com/discue/mongodb-resource-client/issues"
},
"homepage": "https://github.com/discue/mongodb-resource-client#readme",
"keywords": [
"discue",
"storage",
"mongodb"
],
"devDependencies": {
"@discue/open-telemetry-tracing": "^1.4.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"chai": "^6.2.2",
"documentation": "^14.0.3",
"eslint": "^10.4.1",
"eslint-plugin-jsdoc": "^63.0.1",
"globals": "^17.6.0",
"mocha": "^11.7.6",
"mongodb": "^7.2.0",
"standard-version": "^9.5.0",
"typescript": "^6.0.2"
},
"dependencies": {
"emittery": "^2.0.0"
}
}