-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "aws-xray-lambda-promise-subsegment",
"version": "3.0.2",
"description": "Allows adding a subsegment to XRay around any promise",
"main": "index.js",
"scripts": {
"postversion": "git push --follow-tags",
"start-daemon": "./scripts/run-daemon",
"start": "node ./demo/index.js",
"test": "npm audit && mocha ./test/**/*.js",
"update": "npx npm-check -uE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terodox/aws-xray-lambda-promise-subsegment.git"
},
"keywords": [
"aws",
"lambda",
"xray",
"sdk",
"promise",
"segment",
"subsegment",
"tracing",
"awslambda",
"awsxray",
"awssdk"
],
"author": "Andy Desmarais <terodoxnpm@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/terodox/aws-xray-lambda-promise-subsegment/issues"
},
"homepage": "https://github.com/terodox/aws-xray-lambda-promise-subsegment#readme",
"devDependencies": {
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"enquirer": "2.4.1",
"mocha": "10.2.0",
"mock-require": "3.0.3",
"sinon": "15.2.0"
},
"dependencies": {
"aws-xray-sdk-core": "3.5.1"
}
}