-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
60
61
62
63
64
{
"name": "koa-session-local",
"version": "1.0.4",
"description": "Local session storage for Koa sessions",
"main": "src/index.js",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha -- test/*",
"lint": "eslint src",
"coverage": "npm run lint && nyc --reporter=text mocha",
"nyc-coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": "jmitchell38488/koa-session-local",
"keywords": [
"cache",
"caching",
"session",
"local",
"store",
"koa",
"express",
"middleware",
"node",
"nodes",
"session",
"storage"
],
"author": "Justin Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmitchell38488/koa-session-local/issues"
},
"homepage": "https://github.com/jmitchell38488/koa-session-local",
"contributors": [
"Justin Mitchell <[email protected]>"
],
"engines": {
"node": ">= 7.6"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"assert": "^2.0.0",
"babel-jest": "^24.8.0",
"chai": "^4.2.0",
"co-mocha": "^1.2.2",
"coveralls": "^3.0.6",
"dirty-chai": "^2.0.1",
"eslint": "^6.1.0",
"eslint-plugin-node": "^9.1.0",
"istanbul": "^0.4.5",
"koa": "^2.7.0",
"koa-session": "^5.12.2",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"should": "^13.2.3",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0"
},
"peerDependencies": {
"koa": ">=2.0.0",
"koa-session": ">=5.0.0"
}
}