-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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
{
"name": "mongodb-atlas-api-client",
"version": "4.6.0",
"description": "A mongodb atlas api client for nodejs.",
"main": "src/index.js",
"scripts": {
"pretest": "npm run depcheck && eslint --cache \"src/**/*.js\" \"test/**/*.js\"",
"depcheck": "depcheck",
"test": "./node_modules/@hapi/lab/bin/lab -I '@@any-promise/REGISTRATION,Symbol(undici.globalDispatcher.1)' ./test/ -v -S --assert @hapi/code --threshold 100 -p 1 -o test-results/result.json -r json -r console -o stdout",
"lint": "./node_modules/.bin/eslint ./src --fix",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/montumodi/mongodb-atlas-api-client.git"
},
"keywords": [
"mongo",
"mongodb",
"atlas",
"api",
"client",
"driver",
"nodejs",
"node"
],
"author": "Ashish Modi",
"license": "ISC",
"bugs": {
"url": "https://github.com/montumodi/mongodb-atlas-api-client/issues"
},
"homepage": "https://github.com/montumodi/mongodb-atlas-api-client#readme",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.3.1",
"depcheck": "^1.4.7",
"eslint": "^9.10.0",
"sinon": "^18.0.0"
},
"dependencies": {
"urllib": "^4.2.0"
}
}