forked from expressjs/session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "@socialtables/session",
"version": "3.0.0",
"description": "Simple session middleware for Express, compatible with koa and koa-generic-session",
"author": "TJ Holowaychuk, Social Tables",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Joe Wagner <njwjs722@gmail.com>"
],
"repository": "socialtables/session",
"license": "MIT",
"dependencies": {
"cookie": "^0.3.1",
"cookies": "^0.6.2",
"crc": "3.4.4",
"debug": "^4.1.1",
"depd": "~1.1.0",
"on-headers": "~1.0.1",
"parseurl": "~1.3.1",
"uid-safe": "~2.1.3",
"utils-merge": "1.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"after": "0.8.2",
"cookie-parser": "1.4.3",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"keygrip": "^1.0.1",
"koa": "^1.2.4",
"koa-generic-session": "^1.11.5",
"mocha": "^6.2.0",
"supertest": "^4.0.2"
},
"files": [
"session/",
"HISTORY.md",
"LICENSE",
"index.js"
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --bail --exit --reporter spec test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/",
"changeset": "changeset"
}
}