This repository was archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "@google-cloud/connect-firestore",
"description": "Google Cloud Firestore session store for Express/Connect",
"version": "3.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"files": [
"build/src"
],
"repository": "googleapis/nodejs-firestore-session",
"peerDependencies": {
"@google-cloud/firestore": "^7.1.0"
},
"bugs": {
"url": "https://github.com/googleapis/nodejs-firestore-session/issues"
},
"scripts": {
"lint": "gts check",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test -t 100000",
"docs": "compodoc src/",
"test": "c8 mocha build/test",
"fix": "gts fix",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"clean": "gts clean",
"compile": "tsc -p .",
"prepare": "npm run compile",
"pretest": "npm run compile",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@google-cloud/firestore": "^7.1.0",
"@types/express-session": "^1.17.3",
"@types/mocha": "^9.0.0",
"c8": "^9.0.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"gts": "^5.2.0",
"linkinator": "3.1.0",
"mocha": "^9.2.2",
"typescript": "^5.2.2"
}
}