-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
65
66
67
{
"name": "express-sqlite3",
"version": "0.0.5",
"description": "SQLite3 session store for express-session",
"main": "lib/express-sqlite3",
"scripts": {
"lint": "eslint --ignore-path .gitignore lib/** tests/**.js",
"lint:fix": "eslint --fix --ignore-path .gitignore lib/** tests/**.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RomanBurunkov/express-sqlite3.git"
},
"keywords": [
"Express",
"Session",
"Store",
"Sqlite",
"Sqlite3"
],
"author": "Roman Burunkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomanBurunkov/express-sqlite3/issues"
},
"homepage": "https://github.com/RomanBurunkov/express-sqlite3#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"express-session": "^1.18.1",
"jest": "^27.5.1"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true
},
"parserOptions": {
"ecmaFeatures": {
"legacyDecorators": true
}
},
"extends": [
"airbnb-base"
],
"rules": {
"import/prefer-default-export": "off"
}
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json"
],
"testRegex": ".spec.js$",
"coverageDirectory": "./coverage",
"collectCoverageFrom": ["./lib/*.js"]
},
"dependencies": {
"sqlite3": "^5.1.7",
"tm-is": "^0.3.0"
}
}