-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
57
58
59
{
"name": "egg-session-mongo",
"version": "2.0.2",
"description": "MongoDB store for egg session. based on `connect-mongo`.",
"main": "index.js",
"eggPlugin": {
"name": "sessionMongo"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"session",
"mongo",
"MongoDB"
],
"dependencies": {
"koa2-session-mongo": "^0.1.0",
"mongodb": "^6.0.0"
},
"devDependencies": {
"autod": "3.1.2",
"autod-egg": "1.1.0",
"egg": "3.30.1",
"egg-bin": "6.13.0",
"egg-ci": "2.2.0",
"egg-mock": "5.15.1",
"eslint": "9.20.1",
"eslint-config-egg": "14.1.0",
"mongoose": "8.10.1",
"mz-modules": "2.1.0",
"supertest": "7.0.0",
"webstorm-disable-index": "1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod"
},
"files": [
"config",
"app.js"
],
"ci": {
"version": "8, 9"
},
"repository": "https://github.com/Mitscherlich/egg-session-mongo",
"bugs": "https://github.com/Mitscherlich/egg-session-mongo/issues",
"homepage": "https://github.com/Mitscherlich/egg-session-mongo#readme",
"author": "Mitscherlich",
"license": "MIT"
}