forked from benweier/connect-session-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "connect-session-firebase",
"description": "Firebase session store for Connect/Express",
"version": "5.4.0",
"author": "Ben Weier <[email protected]>",
"main": "./index.js",
"scripts": {
"docs": "./node_modules/.bin/jsdoc -c ./conf.json",
"lint": "./node_modules/.bin/eslint --ignore-path ./.eslintignore ./**.js",
"istanbul": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"codecov": "./node_modules/.bin/codecov",
"codeclimate": "./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info",
"test": "./node_modules/.bin/mocha ./test/test.js"
},
"peerDependencies": {
"firebase-admin": "~5.4.0"
},
"devDependencies": {
"chai": "~4.1.0",
"codeclimate-test-reporter": "~0.5.0",
"codecov": "~3.0.0",
"dotenv": "~4.0.0",
"eslint": "~4.10.0",
"express-session": "~1.15.6",
"firebase-admin": "~5.4.0",
"istanbul": "~0.4.5",
"jsdoc": "~3.5.0",
"mocha": "~3.5.3",
"mocha-eslint": "~4.1.0",
"mocha-lcov-reporter": "~1.3.0"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"lib/",
"README.md",
"HISTORY.md",
"LICENSE",
"index.js"
],
"homepage": "https://github.com/benweier/connect-session-firebase",
"repository": {
"type": "git",
"url": "git://github.com/benweier/connect-session-firebase.git"
},
"license": "MIT"
}