-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.68 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": "koa-session-mongoose",
"version": "3.0.2-0",
"description": "Mongoose storage layer for Koa session middleware",
"main": "lib/index.js",
"author": "Michael J. Bondra <mjbondra@gmail.com> (https://mjbondra.com)",
"license": "MIT",
"keywords": [
"koa",
"session",
"mongodb",
"mongo",
"mongoose",
"store"
],
"repository": "gitlab:wondermonger/koa-session-mongoose",
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "npm run test:unit && npm run test:integration",
"test:coverage": "nyc -a -x \"{public,test}/**/*.js\" --report-dir ./public/coverage -r text -r html mocha -R progress \"test/unit/**/*.js\"",
"test:integration": "mocha \"test/integration/**/*.js\"",
"test:integration:debug": "mocha --inspect-brk \"test/integration/**/*.js\"",
"test:unit": "mocha \"test/unit/**/*.js\"",
"test:unit:debug": "mocha --inspect-brk \"test/unit/**/*.js\""
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-wondermonger": "^6.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"mocha": "^6.2.2",
"mongoose": "^5.8.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": ">=5.0.0"
},
"engines": {
"node": ">=8.3.0"
}
}