This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
97 lines (97 loc) · 2.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@google-cloud/debug-agent",
"version": "9.0.1",
"author": "Google Inc.",
"description": "Stackdriver Debug Agent for Node.js",
"main": "./build/src/index",
"types": "./build/src/index.d.ts",
"repository": "googleapis/cloud-debug-nodejs",
"keywords": [
"google",
"debugger",
"debug",
"cloud",
"cloud debug",
"cloud debugger",
"stackdriver debug",
"stackdriver debugger",
"stackdriver"
],
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"files": [
"build/src"
],
"scripts": {
"prepare": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"presystem-test": "npm run compile",
"system-test": "nyc mocha build/system-test --timeout 600000",
"test": "nyc cross-env CLOUD_DEBUG_ASSERTIONS=1 mocha build/test --recursive false",
"compile": "tsc -p .",
"postcompile": "cpy \"test/\" build",
"fix": "gts fix",
"pretest": "npm run compile",
"prepack": "npm run compile",
"lint": "gts check",
"docs": "compodoc src/",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"clean": "gts clean",
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/common": "^5.0.0",
"@fastify/busboy": "2.1.0",
"acorn": "^8.0.0",
"coffeescript": "^2.0.0",
"console-log-level": "^1.4.0",
"extend": "^3.0.2",
"findit2": "^2.2.3",
"firebase-admin": "^12.0.0",
"gcp-metadata": "^6.0.0",
"p-limit": "^3.0.1",
"semver": "^7.0.0",
"source-map": "^0.8.0-beta.0",
"split": "^1.0.0"
},
"overrides": {
"firebase-admin": {
"@fastify/busboy": "2.1.0"
}
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@compodoc/compodoc": "1.1.23",
"@types/acorn": "^4.0.2",
"@types/console-log-level": "^1.4.0",
"@types/estree": "1.0.5",
"@types/extend": "^3.0.0",
"@types/mocha": "^9.0.0",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.3",
"@types/node": "^20.0.0",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.0.0",
"@types/tmp": "^0.2.0",
"@types/uuid": "^9.0.0",
"cpy-cli": "^4.0.0",
"cross-env": "^7.0.0",
"execa": "^5.0.0",
"gts": "^5.0.0",
"linkinator": "^4.0.0",
"mocha": "^9.2.2",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"nock": "^13.0.0",
"nyc": "^15.0.0",
"proxyquire": "^2.0.0",
"teeny-request": "^8.0.0",
"tmp-promise": "^3.0.0",
"typescript": "5.1.6",
"uuid": "^9.0.0"
}
}