This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
56
57
58
{
"name": "@google-cloud/connect-datastore",
"description": "Google Cloud Datastore session store for Express/Connect",
"version": "7.0.1",
"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-datastore-session",
"bugs": {
"url": "https://github.com/googleapis/nodejs-datastore-session/issues"
},
"scripts": {
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test -t 10000",
"docs": "jsdoc -c .jsdoc.js",
"test": "c8 mocha build/test",
"fix": "gts fix",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"lint": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"prepare": "npm run compile",
"pretest": "npm run compile",
"precompile": "gts clean"
},
"dependencies": {},
"peerDependencies": {
"@google-cloud/datastore": "^9.0.0",
"express-session": "^1.17.1"
},
"devDependencies": {
"@google-cloud/datastore": "^9.0.0",
"@types/express-session": "^1.17.0",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"c8": "^9.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"pack-n-play": "^2.0.0",
"typescript": "^5.1.6"
}
}