-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
56 lines (56 loc) · 1.09 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": "egg-mongoose",
"version": "4.0.1",
"description": "egg mongoose plugin",
"eggPlugin": {
"name": "mongoose"
},
"keywords": [
"egg",
"egg-model",
"mongoose",
"eggPlugin",
"egg-plugin"
],
"dependencies": {
"await-first": "^1.0.0",
"mongoose": "^7.5.2"
},
"devDependencies": {
"dotenv": "^7.0.0",
"egg": "^3.16.0",
"egg-bin": "^6.4.1",
"egg-mock": "^5.10.7",
"eslint": "^8.47.0",
"eslint-config-egg": "^12.2.1",
"mocha": "^10.2.0",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"contributor": "git-contributor"
},
"files": [
"index.js",
"index.d.ts",
"app.js",
"agent.js",
"config",
"app",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-mongoose.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
}
}