-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "mongo-http",
"version": "0.0.20",
"description": "A thin wrapper on Mongodb Atlas Data API using native fetch API",
"main": "./lib/index.js",
"scripts": {
"test": "jest --config jest.config.js",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrick-kw-chiu/mongo-http.js.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"mongo",
"mongodb",
"http",
"async",
"serverless",
"cloudflare workers",
"deno",
"typescript"
],
"author": "Patrick Chiu",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrick-kw-chiu/mongo-http.js/issues"
},
"homepage": "https://github.com/patrick-kw-chiu/mongo-http.js#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"bson": "^4.7.0"
}
}