-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
33 lines (33 loc) · 935 Bytes
/
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
{
"name": "express-mysql-session",
"description": "A MySQL session store for express.js",
"version": "3.0.3",
"main": "index.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:integration": "./node_modules/.bin/mocha test/integration/ --recursive --reporter spec --ui bdd",
"test:unit": "./node_modules/.bin/mocha test/unit/ --recursive --reporter spec --ui bdd --exit"
},
"repository": {
"type": "git",
"url": "git://github.com/chill117/express-mysql-session"
},
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"debug": "4.3.4",
"mysql2": "3.10.2"
},
"devDependencies": {
"express": "4.19.2",
"express-session": "1.18.0",
"mocha": "10.4.0"
},
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/chill117/express-mysql-session/issues"
}
}