-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.48 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",
"version": "0.4.0",
"description": "MongoDB atlas data API SDK for Node.js",
"author": "Surmon",
"license": "MIT",
"keywords": [
"MongoDB data API",
"MongoDB cloud data API",
"MongoDB Atlas data API SDK"
],
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/mongodb-data-api.git"
},
"files": [
"CHANGELOG.md",
"dist"
],
"sideEffects": false,
"main": "dist/mongodb-data-api.cjs.js",
"module": "dist/mongodb-data-api.esm.js",
"types": "dist/mongodb-data-api.esm.d.ts",
"scripts": {
"lint": "eslint --ext .ts src/**",
"format": "prettier --write --parser typescript \"src/**/*.ts\"",
"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 lint && npm run test && npm run build",
"release": ". ./scripts/release.sh"
},
"dependencies": {
"axios": "^1.1.0",
"mongodb": "^4.12.0"
},
"devDependencies": {
"@surmon-china/libundler": "^2.3.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.0",
"jest": "^29.3.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.0",
"typescript": "^4.9.0"
}
}