forked from RisingStack/trace-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "@risingstack/trace",
"version": "1.13.2",
"author": "RisingStack, Inc.",
"license": "MIT",
"contributors": "RisingStack",
"description": "RisingStack Trace Node.js collector",
"homepage": "https://github.com/RisingStack/trace-nodejs",
"keywords": [
"performance",
"monitoring",
"instrumentation",
"debugging",
"profiling",
"microservices",
"stack"
],
"main": "index.js",
"scripts": {
"preinstall": "npm install node-gyp-install && ./node_modules/node-gyp-install/bin.js",
"lint": "eslint lib example",
"test": "npm run test-unit",
"test-unit": "mocha $(find ./lib -name \"*.spec.js\" -not -path \"./node_modules/*\")",
"cover": "istanbul cover _mocha $(find . -name \"*.spec.js\" -not -path \"./node_modules/*\"); open coverage/lcov-report/index.html",
"changelog": "conventional-changelog -p angular -o CHANGELOG.md -r 500"
},
"repository": {
"type": "git",
"url": "https://github.com/RisingStack/trace-nodejs.git"
},
"bugs": {
"url": "https://github.com/RisingStack/trace-nodejs/issues"
},
"dependencies": {
"bl": "1.0.0",
"continuation-local-storage": "3.1.4",
"debug": "2.2.0",
"lodash": "3.10.0",
"logstash-client": "1.0.0",
"microtime": "2.0.0",
"node-uuid": "1.4.3",
"qs": "4.0.0",
"sync-request": "2.0.1",
"usage": "0.7.1"
},
"devDependencies": {
"async": "1.4.2",
"body-parser": "1.13.3",
"chai": "3.2.0",
"chai-subset": "1.0.1",
"conventional-changelog": "0.5.3",
"eslint": "1.7.3",
"eslint-config-standard": "4.4.0",
"eslint-plugin-standard": "1.3.1",
"express": "4.12.3",
"istanbul": "0.3.13",
"mocha": "2.2.4",
"nock": "2.7.0",
"pre-commit": "1.0.6",
"proxyquire": "1.6.0",
"sinon": "1.14.1",
"sinon-chai": "2.8.0",
"superagent": "1.3.0",
"supertest": "1.0.1"
},
"pre-commit": [
"lint",
"test-unit"
]
}