-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 874 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 874 Bytes
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
{
"name": "@brickyang/easy-mongodb",
"version": "2.0.1",
"description": "Based on MongoDB Native Node.js Driver.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run cov",
"test-local": "mocha",
"cov": "nyc mocha",
"lint": "eslint ."
},
"dependencies": {
"@types/mongodb": "^3.1.18",
"mongodb": "^3.1.10"
},
"devDependencies": {
"eslint": "^5.12.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"tslint": "^5.12.1"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"keywords": [
"mongodb"
],
"repository": {
"type": "git",
"url": "git+https://github.com:brickyang/easy-mongodb.git"
},
"bugs": {
"url": "https://github.com/brickyang/easy-mongodb/issues"
},
"homepage": "https://github.com/brickyang/easy-mongodb#readme",
"author": "Brick",
"license": "MIT"
}