-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "express-tiny-session",
"description": "express cookie session middleware",
"repository": {
"type": "git",
"url": "https://github.com/vdmitriy/express-tiny-session"
},
"version": "4.0.1",
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"connect",
"express",
"middleware",
"session"
],
"dependencies": {
"debug": "^4.1.1",
"on-headers": "^1.0.2"
},
"files": [
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"license": "MIT",
"devDependencies": {
"assert": "^2.0.0",
"cookie-parser": "^1.4.4",
"eslint": "^5.16.0",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"supertest": "^4.0.2"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}