-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "connect-loki",
"version": "1.2.0",
"description": "A Loki.js session store for Connect/Express",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Requarks/connect-loki.git"
},
"keywords": [
"connect-loki",
"connect-lokijs",
"loki",
"lokijs",
"express-session",
"express-session-loki",
"express",
"expressjs"
],
"author": "Nicolas Giard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Requarks/connect-loki/issues"
},
"homepage": "https://github.com/Requarks/connect-loki#readme",
"devDependencies": {
"colors": "^1.4.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3"
},
"dependencies": {
"lokijs": "^1.5.11"
},
"jest": {
"collectCoverage": false,
"testMatch": [
"**/test/**/*.js?(x)",
"**/?(*.)(spec|test).js?(x)"
],
"verbose": true
}
}