-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "express-session-id",
"version": "2.0.5",
"description": "An express middleware for session ID",
"license": "MIT",
"repository": "dreisel/express-session-id",
"main": "src/index.js",
"author": {
"name": "Daniel Reisel",
"email": "dreisel@gmail.com",
"url": "https://github.com/dreisel"
},
"engines": {
"node": ">=10"
},
"files": [
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"preversion": "npm run lint && npm test && npm run docs",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"express-session-id"
],
"dependencies": {
"lodash.merge": "^4.6.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"documentation": "^14.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-prettier": "^2.6.0",
"express": "^4.16.3",
"jest-cli": "^29.6.4",
"lodash": "^4.17.20",
"opn-cli": "^4.1.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"standard-changelog": "^2.0.26",
"supertest": "^3.1.0"
}
}