-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
{
"name": "egg-mongo-native",
"version": "3.5.0",
"description": "MongoDB egg.js plugin using native driver.",
"eggPlugin": {
"name": "mongo"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"mongo",
"mongodb",
"mongo-driver"
],
"dependencies": {
"@brickyang/easy-mongodb": "^2.0.0",
"@types/mongodb": "^3.1.17"
},
"devDependencies": {
"egg": "^2.6.0",
"egg-bin": "^4.6.3",
"egg-mock": "^3.17.0",
"eslint": "^5.10.0",
"eslint-config-egg": "^7.0.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run cov",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"files": [
"config",
"app.js",
"lib",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git@github.com:brickyang/egg-mongo-native.git"
},
"bugs": {
"url": "https://github.com/brickyang/egg-mongo-native/issues"
},
"homepage": "https://github.com/brickyang/egg-mongo-native",
"author": "Brick <brick.c.yang@gmail.com>",
"license": "MIT"
}