This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
forked from DataDog/dd-trace-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
128 lines (128 loc) · 4.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ls-trace",
"version": "0.3.5",
"description": "LightStep fork of Datadog's APM tracing client for JavaScript",
"main": "index.js",
"browser": "browser.js",
"typings": "index.d.ts",
"scripts": {
"rebuild": "node-gyp rebuild",
"prebuild": "node scripts/prebuild.js",
"prebuilds": "node scripts/prebuilds.js",
"bundle": "webpack --display-modules",
"postpublish": "node scripts/postpublish.js",
"install": "node scripts/post_install.js",
"install:rebuild": "node-gyp-build",
"bench": "node benchmark",
"testing": "node testing/test.js",
"type:doc": "cd docs && yarn && yarn build",
"type:test": "cd docs && yarn && yarn test",
"lint": "node scripts/check_licenses.js && eslint .",
"services": "node ./scripts/install_plugin_modules && node packages/dd-trace/test/setup/services",
"tdd": "node scripts/tdd.js",
"tdd:core": "npm run test:core -- --watch-extensions ts --watch",
"tdd:plugins": "npm run test:plugins -- --watch-extensions ts --watch",
"test": "SERVICES=* yarn services && mocha --exit --expose-gc 'packages/dd-trace/test/setup/node.js' 'packages/*/test/**/*.spec.js'",
"test:core": "nyc --include \"packages/dd-trace/src/**/*.js\" -- mocha --exit --expose-gc --file packages/dd-trace/test/setup/core.js \"packages/dd-trace/test/**/*.spec.js\"",
"test:plugins": "yarn services && nyc --include \"packages/datadog-plugin-@($(echo $PLUGINS))/src/**/*.js\" -- mocha --exit --file \"packages/dd-trace/test/setup/core.js\" \"packages/datadog-plugin-@($(echo $PLUGINS))/test/**/*.spec.js\"",
"test:browser": "karma start --single-run",
"leak:core": "node ./scripts/install_plugin_modules && (cd packages/memwatch && yarn) && NODE_PATH=./packages/memwatch/node_modules node --no-warnings ./node_modules/.bin/tape 'packages/dd-trace/test/leak/**/*.js'",
"leak:plugins": "yarn services && (cd packages/memwatch && yarn) && NODE_PATH=./packages/memwatch/node_modules node --no-warnings ./node_modules/.bin/tape \"packages/datadog-plugin-@($(echo $PLUGINS))/test/leak.js\"",
"codecov": "codecov",
"release": "./scripts/release.sh",
"release:prepare": "./scripts/release-prepare.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightstep/ls-trace-js.git"
},
"keywords": [
"datadog",
"lightstep",
"trace",
"tracing",
"opentracing",
"apm"
],
"author": "LightStep <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/lightstep/ls-trace-js/issues"
},
"homepage": "https://github.com/lightstep/ls-trace-js#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"@types/node": "^10.12.18",
"container-info": "^1.0.1",
"core-js": "^3.6.0",
"google-protobuf": "^3.11.4",
"hdr-histogram-js": "^1.1.4",
"int64-buffer": "^0.1.9",
"koalas": "^1.0.2",
"limiter": "^1.1.4",
"lodash.kebabcase": "^4.1.1",
"lodash.pick": "^4.4.0",
"lodash.sortby": "^4.7.0",
"lodash.uniq": "^4.5.0",
"methods": "^1.1.2",
"module-details-from-path": "^1.0.3",
"msgpack-lite": "^0.1.26",
"nan": "^2.12.1",
"node-gyp-build": "^3.8.0",
"opentracing": ">=0.12.1",
"parent-module": "^0.1.0",
"path-to-regexp": "^0.1.2",
"performance-now": "^2.1.0",
"read-pkg-up": "^3.0.0",
"require-in-the-middle": "^2.2.2",
"semver": "^5.5.0",
"shimmer": "^1.2.0",
"systeminformation": "^4.22.5",
"tar": "^4.4.8",
"url-parse": "^1.4.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"axios": "^0.18.0",
"babel-loader": "^8.0.6",
"benchmark": "^2.1.4",
"body-parser": "^1.18.2",
"chai": "^4.2.0",
"checksum": "^0.1.1",
"codecov": "^3.5.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eventemitter3": "^3.1.0",
"express": "^4.16.2",
"get-port": "^3.2.0",
"glob": "^7.1.6",
"graphql": "0.13.2",
"karma": "^4.3.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nock": "^11.3.3",
"nyc": "^14.1.1",
"package-json": "^6.5.0",
"proxyquire": "^1.8.0",
"retry": "^0.10.1",
"rimraf": "^3.0.0",
"sinon": "^8.0.4",
"sinon-chai": "^3.4.0",
"tape": "^4.9.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
}
}