-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "datadog-metrics",
"version": "0.13.0-dev",
"description": "Buffered metrics reporting via the Datadog HTTP API",
"main": "index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dbader/node-datadog-metrics.git"
},
"bugs": {
"url": "https://github.com/dbader/node-datadog-metrics/issues"
},
"scripts": {
"prepack": "npm run clean && npm run build-types && npm run check-types",
"test": "mocha --reporter spec",
"check-integration": "node test-other/integration_check.js",
"check-codestyle": "npx eslint .",
"check-text": "test-other/lint_text.sh",
"build-types": "tsc --build",
"check-types": "tsc --noEmit --strict test-other/types_check.ts",
"clean": "tsc --build --clean"
},
"keywords": [
"datadog",
"metrics",
"stats"
],
"author": "Daniel Bader <mail@dbader.org> (http://dbader.org/)",
"license": "MIT",
"devDependencies": {
"@datadog/datadog-api-client": "^1.31.0",
"@types/node": "^14.14.45",
"chai": "4.3.6",
"chai-as-promised": "^7.1.2",
"chai-string": "1.5.0",
"eslint": "^8.24.0",
"mocha": "9.2.2",
"nock": "^13.2.9",
"typescript": "^4.8.4"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"debug": "^4.1.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"README.md",
"LICENSE",
"index.js",
"lib/**",
"dist/**",
"!dist/tsconfig.tsbuildinfo"
]
}