-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
97 lines (97 loc) · 2.73 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": "pprof",
"version": "4.0.0",
"description": "pprof support for Node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/google/pprof-nodejs.git"
},
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "nyc mocha out/test/test-*.js",
"check": "gts check",
"clean": "gts clean && node-gyp clean",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"compile": "tsc -p .",
"fix": "gts fix",
"lint": "gts check",
"docs": "echo 'no docs yet'",
"prepare": "npm run compile",
"pretest": "npm run compile && node-pre-gyp install --build-from-source",
"posttest": "npm run check && npm run license-check",
"proto": "npm run proto:profile",
"proto:profile": "mkdir -p proto && pbjs -t static-module -w commonjs -o proto/profile.js third_party/proto/profile.proto && pbts -o proto/profile.d.ts proto/profile.js",
"license-check": "jsgl --local .",
"docs-test": "linkinator docs -r --skip www.googleapis.com",
"predocs-test": "npm run docs"
},
"author": {
"name": "Google Inc."
},
"license": "Apache-2.0",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"bindings": "^1.2.1",
"delay": "^5.0.0",
"findit2": "^2.2.3",
"nan": "^2.17.0",
"p-limit": "^3.0.0",
"protobufjs": "~7.2.4",
"source-map": "~0.8.0-beta.0",
"split": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^16.0.0",
"@types/p-limit": "^2.0.0",
"@types/pretty-ms": "^4.0.0",
"@types/request": "^2.47.1",
"@types/sinon": "^17.0.0",
"@types/tmp": "0.2.6",
"codecov": "^3.0.0",
"deep-copy": "^1.4.2",
"gts": "^5.3.1",
"js-green-licenses": "^4.0.0",
"linkinator": "^5.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"protobufjs-cli": "1.1.2",
"sinon": "^17.0.0",
"source-map-support": "^0.5.12",
"tmp": "0.2.1",
"ts-mockito": "^2.2.5",
"typescript": "^5.1.6"
},
"files": [
"out/src",
"out/third_party/cloud-debug-nodejs",
"bindings",
"proto",
"binding.gyp",
"package-lock.json",
"package.json",
"README.md"
],
"nyc": {
"exclude": [
"proto",
"out/test",
"out/system-test"
]
},
"engines": {
"node": ">=14.0.0"
},
"binary": {
"module_name": "pprof",
"module_path": "./build/{node_abi}-{platform}-{arch}-{libc}",
"host": "https://storage.googleapis.com/cloud-profiler/pprof-nodejs/release",
"remote_path": "v{version}",
"package_name": "{node_abi}-{platform}-{arch}-{libc}.tar.gz"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}