forked from instana/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.66 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.66 KB
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
{
"name": "instana-nodejs-sensor",
"version": "1.28.0",
"description": "The Instana Node.js sensor",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "NODE_ENV=debug USE_OPENTRACING_DEBUG_IMPL=true npm run test:mocha && npm run test:lint",
"test:mocha": "mocha --reporter spec $(find src test -name '*_test.js')",
"test:debug": "WITH_STDOUT=true DEBUG=kafka-node:* npm run test:mocha",
"test:lint": "eslint src test",
"dev": "node -e 'require(\".\")({agentPort: process.env.AGENT_PORT || 42699})' | bunyan",
"dev-to-agent-stub": "AGENT_PORT=3210 npm run dev",
"agent-stub": "AGENT_PORT=3210 node test/apps/agentStub.js",
"dev-http": "APP_PORT=3456 TRACING_ENABLED=true node test/apps/express | bunyan",
"dev-http-proxy": "APP_PORT=3457 UPSTREAM_PORT=3456 TRACING_ENABLED=true node test/apps/expressProxy | bunyan",
"dev-http-elasticsearch": "APP_PORT=3458 TRACING_ENABLED=true node test/apps/expressElasticsearch | bunyan",
"dev-http-mongodb": "APP_PORT=3459 TRACING_ENABLED=true node test/apps/expressMongodb | bunyan",
"dev-http-kafka-producer": "APP_PORT=3460 TRACING_ENABLED=true node test/apps/expressKafkaProducer | bunyan",
"dev-http-mysql": "APP_PORT=3461 TRACING_ENABLED=true node test/apps/expressMysql | bunyan",
"precommit": "doctoc README.md CONFIGURATION.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instana/nodejs-sensor.git"
},
"keywords": [
"instana",
"agent",
"sensor",
"monitoring"
],
"author": "Ben Ripkens <ben@instana.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/instana/nodejs-sensor/issues"
},
"homepage": "https://github.com/instana/nodejs-sensor#readme",
"dependencies": {
"bunyan": "^1.5.1",
"event-loop-lag": "1.2.0",
"semver": "5.4.1",
"shimmer": "1.1.0",
"opentracing": "^0.14.1",
"cls-hooked": "4.2.2"
},
"optionalDependencies": {
"event-loop-stats": "1.0.0",
"gcstats.js": "1.0.0",
"v8-profiler": "5.7.0"
},
"devDependencies": {
"admin": "^1.4.0",
"admin-plugin-healthcheck": "^1.1.0",
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"chai": "3.3.0",
"doctoc": "^1.3.0",
"elasticsearch": "11.0.1",
"eslint": "1.7.2",
"eslint-config-airbnb": "0.1.0",
"express": "4.14.0",
"kafka-node": "^1.0.7",
"lodash": "4.15.0",
"mocha": "2.3.3",
"mongodb": "2.2.9",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"proxyquire": "1.7.3",
"request": "2.74.0",
"request-promise": "4.1.1",
"request-promise-native": "1.0.3",
"sinon": "1.17.1",
"underscore": "^1.8.3",
"uuid": "^3.0.1"
}
}