-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
98 lines (98 loc) · 2.65 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
{
"name": "@risingstack/trace",
"version": "3.6.1",
"author": "RisingStack, Inc.",
"license": "SEE LICENSE IN LICENSE",
"contributors": "RisingStack",
"description": "RisingStack Trace Node.js collector",
"homepage": "https://github.com/RisingStack/trace-nodejs",
"keywords": [
"performance",
"monitoring",
"instrumentation",
"debugging",
"profiling",
"microservices",
"stack"
],
"release": {
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"main": "lib/index.js",
"scripts": {
"lint": "./scripts/lint",
"test": "./scripts/test",
"test-unit": "mocha 'lib/**/*.spec.js'",
"test-e2e": "./scripts/test-e2e",
"test-instrumentations": "./scripts/test-instrumentations",
"test-coverage": "./scripts/test-coverage",
"which": "which",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release-pre": "semantic-release pre",
"semantic-release-post": "semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/RisingStack/trace-nodejs.git"
},
"bugs": {
"url": "https://github.com/RisingStack/trace-nodejs/issues"
},
"engines": {
"node": ">=0.12"
},
"dependencies": {
"bl": "1.2.1",
"continuation-local-storage": "3.2.0",
"debug": "2.6.8",
"https-proxy-agent": "1.0.0",
"js-yaml": "3.8.4",
"json-stringify-safe": "5.0.1",
"lodash.assign": "4.2.0",
"lodash.defaults": "4.2.0",
"lodash.find": "4.6.0",
"lodash.findindex": "4.6.0",
"lodash.flatmap": "4.5.0",
"lodash.foreach": "4.5.0",
"lodash.get": "4.4.2",
"lodash.isnumber": "3.0.3",
"lodash.remove": "4.7.0",
"lodash.some": "4.6.0",
"lodash.uniq": "4.5.0",
"lodash.unzip": "3.4.0",
"semver": "5.3.0",
"sync-request": "3.0.1 ",
"uuid": "3.0.1"
},
"optionalDependencies": {
"@risingstack/microtime": "2.1.9",
"@risingstack/gc-stats": "1.0.10",
"@risingstack/event-loop-stats": "1.0.8",
"@risingstack/v8-profiler": "5.7.11"
},
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog": "^1.1.0",
"deep-eql": "^2.0.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-node": "^5.0.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"nock": "^9.0.6",
"pre-commit": "^1.2.2",
"semantic-release": "^6.3.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0"
},
"pre-commit": [
"lint",
"test-unit"
]
}