forked from googleapis/nodejs-firestore-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "@google-cloud/connect-firestore",
"description": "Google Cloud Firestore session store for Express/Connect",
"version": "1.0.5",
"license": "Apache-2.0",
"author": "Google Inc.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=8.10.0"
},
"files": [
"build/src"
],
"repository": "googleapis/nodejs-firestore-session",
"peerDependencies": {
"@google-cloud/firestore": "^3.0.0"
},
"bugs": {
"url": "https://github.com/googleapis/nodejs-firestore-session/issues"
},
"scripts": {
"lint": "gts check && eslint '**/*.js'",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test -t 10000",
"docs": "compodoc src/",
"test": "nyc mocha build/test",
"fix": "gts fix && eslint --fix '**/*.js'",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"clean": "gts clean",
"compile": "tsc -p .",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.9",
"@google-cloud/firestore": "^3.0.0",
"@types/express-session": "^1.15.12",
"@types/mocha": "^5.2.6",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"gts": "^1.0.0",
"linkinator": "^1.5.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"prettier": "^1.14.3",
"typescript": "3.6.4"
}
}