-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "seek-datadog-custom-metrics",
"version": "0.0.0-semantically-released",
"private": false,
"description": "Helpers for sending Datadog custom metrics",
"homepage": "https://github.com/seek-oss/datadog-custom-metrics#readme",
"bugs": {
"url": "https://github.com/seek-oss/datadog-custom-metrics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/datadog-custom-metrics.git"
},
"license": "MIT",
"sideEffects": false,
"main": "./lib-commonjs/index.js",
"module": "./lib-es2015/index.js",
"types": "./lib-types/index.d.ts",
"files": [
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"release": "yarn build && skuba release",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"dependencies": {
"@types/aws-lambda": "^8.10.108"
},
"devDependencies": {
"@types/node": "20.14.2",
"datadog-lambda-js": "9.112.0",
"dd-trace": "5.14.1",
"hot-shots": "10.0.0",
"skuba": "8.2.1"
},
"peerDependencies": {
"datadog-lambda-js": "6.x || 7.x || 8.x || 9.x",
"hot-shots": "6.x || 7.x || 8.x || 9.x || 10.x"
},
"peerDependenciesMeta": {
"datadog-lambda-js": {
"optional": true
},
"hot-shots": {
"optional": true
}
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "8.1.0"
}
}