-
Notifications
You must be signed in to change notification settings - Fork 1
/
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": "@janiscommerce/mongodb",
"version": "3.9.0",
"description": "",
"main": "lib/mongodb.js",
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint lib/ tests/",
"build-types": "tsc lib/mongodb.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"prepare": "husky install",
"postpublish": "./.postpublish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janis-commerce/mongodb.git"
},
"author": "Janis",
"license": "ISC",
"bugs": {
"url": "https://github.com/janis-commerce/mongodb/issues"
},
"homepage": "https://github.com/janis-commerce/mongodb#readme",
"dependencies": {
"@janiscommerce/model": "^8.8.0",
"@janiscommerce/superstruct": "^1.2.1",
"aws4": "^1.13.2",
"fastest-validator": "^1.19.0",
"mongodb": "^4.17.2"
},
"devDependencies": {
"@types/node": "22.8.4",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^16.1.3",
"typescript": "^5.6.3"
},
"files": [
"lib/",
"types/"
],
"types": "types/index.d.ts",
"directories": {
"test": "tests"
}
}