forked from chill117/express-mysql-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "express-mysql-session",
"description": "A MySQL session store for express.js",
"version": "2.1.3",
"main": "index.js",
"scripts": {
"benchmarks": "./node_modules/.bin/mocha test/benchmarks/ --recursive --reporter spec --ui bdd",
"lint": "./node_modules/.bin/eslint --config .eslintrc.js *.js test/**/*.js",
"prepare": "npm run test",
"pretest": "npm run lint",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/chill117/express-mysql-session"
},
"author": {
"name": "Charles Hill",
"email": "chill@degreesofzero.com"
},
"license": "MIT",
"dependencies": {
"debug": "4.1.1",
"express-session": "1.17.0",
"mysql": "2.18.1",
"underscore": "1.9.2"
},
"devDependencies": {
"async": "3.1.0",
"benchmark": "2.1.4",
"chai": "4.2.0",
"cookie-parser": "1.4.4",
"eslint": "6.8.0",
"express": "4.17.1",
"mocha": "7.0.0",
"mysql2": "2.1.0"
},
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/chill117/express-mysql-session/issues"
}
}