forked from surmon-china/mongodb-data-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "mongodb-data-api-fetch",
"version": "0.1.5",
"description": "MongoDB Atlas Data API SDK for Cloudflare Workers",
"author": "Surmon",
"contributors": [
{
"name": "trophologist",
"email": "[email protected]",
"url": "https://trophologist.com"
}
],
"license": "MIT",
"keywords": [
"MongoDB",
"MongoDB Data API",
"MongoDB Atlas Data API SDK",
"Cloudflare Workers",
"Fetch"
],
"repository": {
"type": "git",
"url": "https://github.com/trophologist/mongodb-data-api-fetch.git"
},
"files": [
"dist"
],
"sideEffects": false,
"main": "dist/mongodb-data-api-fetch.cjs.js",
"module": "dist/mongodb-data-api-fetch.esm.js",
"types": "dist/mongodb-data-api-fetch.esm.d.ts",
"scripts": {
"test": "npm run test:type && npm run test:unit",
"test:unit": "jest",
"test:type": "tsc -p ./tests-dts/tsconfig.json && tsc -p ./tests-dts/tsconfig.build.json",
"build": "libundler",
"rebirth": "npm run test && npm run build"
},
"dependencies": {
"mongodb": "^4.12.0"
},
"devDependencies": {
"@surmon-china/libundler": "^2.3.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.44.0",
"jest": "^29.3.0",
"ts-jest": "^29.0.0",
"typescript": "^4.9.0",
"jest-environment-jsdom": "^29.3.1"
}
}