forked from googleapis/cloud-trace-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.41 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@google-cloud/trace-agent",
"version": "3.1.1",
"description": "Node.js Support for StackDriver Trace",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "googleapis/cloud-trace-nodejs",
"scripts": {
"init-test-fixtures": "npm run script init-test-fixtures",
"test": "npm run script npm-check npm-compile npm-init-test-fixtures npm-unit-test npm-license-check",
"unit-test": "npm run script run-unit-tests",
"non-interference": "npm run script test-non-interference",
"system-test": "npm run script decrypt-service-account-credentials run-system-tests",
"changelog": "./bin/run-changelog.sh",
"check-install": "npm run script check-install",
"get-plugin-types": "npm run script get-plugin-types",
"coverage": "npm run script run-unit-tests-with-coverage report-coverage",
"bump": "./bin/run-bump.sh",
"check": "gts check",
"clean": "rimraf build/src",
"compile-all": "npm run script compile-auto",
"compile-strict": "npm run script compile-auto-strict",
"compile": "npm run script get-plugin-types compile-auto compile-auto-strict",
"fix": "gts fix",
"prepare": "npm run script npm-clean get-plugin-types compile-es2015 compile-es2015-strict",
"script": "ts-node -P ./scripts/tsconfig.json ./scripts",
"license-check": "jsgl --local ."
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"!build/src/plugins/**/*.d.ts",
"!build/src/plugins/types",
"doc",
"!doc/images",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [
"google",
"tracing",
"profiling"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=6"
},
"devDependencies": {
"@types/builtin-modules": "^2.0.0",
"@types/console-log-level": "^1.4.0",
"@types/continuation-local-storage": "^3.2.1",
"@types/extend": "^3.0.0",
"@types/glob": "^5.0.32",
"@types/is": "0.0.20",
"@types/methods": "^1.1.0",
"@types/mocha": "^5.2.5",
"@types/ncp": "^2.0.1",
"@types/nock": "^9.1.2",
"@types/node": "~10.7.2",
"@types/once": "^1.4.0",
"@types/pify": "^3.0.0",
"@types/protobufjs": "^5.0.31",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.47.1",
"@types/semver": "^5.4.0",
"@types/shimmer": "^1.0.1",
"@types/tmp": "0.0.33",
"@types/uuid": "^3.4.3",
"axios": "^0.18.0",
"changelog-maker": "^2.2.2",
"codecov": "^3.0.0",
"express": "^4.15.2",
"glob": "^7.0.3",
"grpc": "1.14.2",
"gts": "^0.8.0",
"intelli-espower-loader": "^1.0.1",
"js-green-licenses": "^0.5.0",
"jshint": "^2.9.1",
"mocha": "^5.0.0",
"ncp": "^2.0.0",
"nock": "^9.1.3",
"nyc": "^13.0.0",
"once": "^1.4.0",
"pify": "^4.0.0",
"retry-axios": "^0.3.2",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.6",
"standard-version": "^4.2.0",
"timekeeper": "^2.0.0",
"tmp": "0.0.33",
"ts-node": "^7.0.0",
"typescript": "~3.0.0"
},
"dependencies": {
"@google-cloud/common": "^0.25.3",
"builtin-modules": "^3.0.0",
"console-log-level": "^1.4.0",
"continuation-local-storage": "^3.2.1",
"extend": "^3.0.0",
"gcp-metadata": "^0.7.0",
"hex2dec": "^1.0.1",
"is": "^3.2.0",
"methods": "^1.1.1",
"require-in-the-middle": "^3.0.0",
"semver": "^5.4.1",
"shimmer": "^1.2.0",
"teeny-request": "^3.9.0",
"uuid": "^3.0.1"
}
}