-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
82 lines (82 loc) · 2.16 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
{
"name": "@google-cloud/profiler",
"version": "6.0.2",
"description": "Adds support for Cloud Profiler to Node.js applications",
"repository": "googleapis/cloud-profiler-nodejs",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "c8 mocha build/test/test-*.js",
"system-test": "c8 --no-clean mocha build/system-test/test-*.js --timeout=60000",
"samples-test": "echo 'no sample tests'",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"lint": "gts check",
"docs": "jsdoc -c .jsdoc.js",
"prelint": "cd samples; npm link ../; npm install",
"prepare": "npm run compile",
"pretest": "npm run compile",
"license-check": "jsgl --local .",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"precompile": "gts clean"
},
"author": {
"name": "Google Inc."
},
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/common": "^5.0.0",
"@google-cloud/logging-min": "^11.0.0",
"@types/console-log-level": "^1.4.0",
"@types/semver": "^7.0.0",
"console-log-level": "^1.4.0",
"delay": "^5.0.0",
"extend": "^3.0.2",
"gcp-metadata": "^6.0.0",
"parse-duration": "^1.0.0",
"pprof": "4.0.0",
"pretty-ms": "^7.0.0",
"protobufjs": "~7.4.0",
"semver": "^7.0.0",
"teeny-request": "^9.0.0"
},
"devDependencies": {
"@types/extend": "^3.0.0",
"@types/long": "^5.0.0",
"@types/mocha": "^9.0.0",
"@types/nock": "^11.0.0",
"@types/node": "^20.4.9",
"@types/pretty-ms": "^5.0.0",
"@types/sinon": "^17.0.0",
"@types/tmp": "0.2.6",
"c8": "^9.0.0",
"codecov": "^3.0.0",
"gts": "^5.0.0",
"js-green-licenses": "^4.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^5.0.0",
"mocha": "^9.2.2",
"nock": "^13.0.0",
"sinon": "^18.0.0",
"source-map": "^0.7.0",
"tmp": "0.2.3",
"typescript": "^5.1.6"
},
"files": [
"build/src",
"build/third_party/cloud-debug-nodejs"
],
"nyc": {
"exclude": [
"build/test",
"build/system-test"
]
},
"engines": {
"node": ">=14.0.0"
}
}