forked from DataDog/dd-trace-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
{
"name": "dd-trace",
"version": "0.1.1",
"description": "Datadog APM tracing client for JavaScript (experimental)",
"main": "index.js",
"scripts": {
"bench": "node benchmark",
"lint": "eslint . && node scripts/check_licenses.js",
"tdd": "mocha --watch",
"test": "nyc --reporter text --reporter lcov mocha",
"version": "genversion lib/version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataDog/dd-trace-js.git"
},
"keywords": [
"datadog",
"trace",
"tracing",
"opentracing",
"apm"
],
"author": "Datadog Inc. <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/DataDog/dd-trace-js/issues"
},
"homepage": "https://github.com/DataDog/dd-trace-js#readme",
"engines": {
"node": ">=4"
},
"dependencies": {
"cls-bluebird": "^2.1.0",
"cls-hooked": "^4.2.2",
"continuation-local-storage": "^3.2.1",
"int64-buffer": "^0.1.9",
"koalas": "^1.0.2",
"methods": "^1.1.2",
"msgpack-lite": "^0.1.26",
"opentracing": "0.14.1",
"performance-now": "^2.1.0",
"require-dir": "^1.0.0",
"require-in-the-middle": "^2.2.1",
"safe-buffer": "^5.1.1",
"semver": "^5.5.0",
"shimmer": "^1.2.0",
"url-parse": "^1.2.0"
},
"devDependencies": {
"axios": "^0.18.0",
"benchmark": "^2.1.4",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"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",
"express": "^4.16.2",
"genversion": "^2.0.1",
"get-port": "^3.2.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"nyc": "^11.4.1",
"pg": "^6.4.2",
"proxyquire": "^1.8.0",
"sinon": "^4.2.1",
"sinon-chai": "^2.14.0"
}
}