-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "mongodb-data-api-odm",
"version": "1.0.2",
"description": "An ODM implementation for Atlas MongoDB Data API",
"main": "src/index.js",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"build": "rm -rf dist; tsc -p ./tsconfig-build.json;npm run copy-files",
"copy-files": "cp -r ./typings dist; cp index.d.ts README.md LICENSE dist",
"test": "jest"
},
"keywords": [
"mongo",
"mongodb",
"atlas",
"data-api"
],
"author": "Tales Luna <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.4.9",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talesluna/mongodb-data-api-odm.git"
},
"bugs": {
"url": "https://github.com/talesluna/mongodb-data-api-odm/issues"
},
"homepage": "https://github.com/talesluna/mongodb-data-api-odm#readme"
}