-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "@saibotsivad/mongodb",
"version": "1.1.0",
"description": "Simple wrapper for the MongoDB Data API.",
"module": "dist/index.mjs",
"unpkg": "dist/index.min.js",
"main": "dist/index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"dist",
"*.d.ts"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src/*.js",
"demo": "node demo/demo.js",
"build": "bundt src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saibotsivad/mongodb.git"
},
"keywords": [
"mongodb",
"atlas",
"data",
"api"
],
"author": {
"name": "Tobias Davis",
"email": "[email protected]",
"url": "https://davistobias.com"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/saibotsivad/mongodb/issues"
},
"homepage": "https://github.com/saibotsivad/mongodb",
"devDependencies": {
"bundt": "github:saibotsivad/bundt",
"eslint": "^8.24.0",
"httpie": "^1.1.2"
}
}