-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
54
55
56
{
"name": "@albert-team/mongol",
"description": "Minimalistic MongoDB helper for Node.js.",
"license": "MIT",
"author": "Albert Team",
"repository": "github:albert-team/mongol",
"homepage": "https://github.com/albert-team/mongol",
"bugs": {
"url": "https://github.com/albert-team/mongol/issues"
},
"engines": {
"node": ">=10"
},
"version": "0.9.0",
"types": "dist/index.d.ts",
"files": [
"dist",
"builtins"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:docs": "rm -rf docs && typedoc src",
"test": "jest",
"prepublishOnly": "rm -rf dist && yarn build"
},
"dependencies": {
"mongodb": "^3.5.7"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/mongodb": "^3.5.16",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"keywords": [
"minimal",
"minimalistic",
"mongo",
"mongodb",
"helper"
],
"publishConfig": {
"access": "public"
}
}