-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "datadog-metrics",
"version": "0.12.2-dev",
"description": "Buffered metrics reporting via the Datadog HTTP API",
"main": "index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]: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 <[email protected]> (http://dbader.org/)",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.20.55",
"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": {
"@datadog/datadog-api-client": "^1.17.0",
"debug": "^4.1.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"README.md",
"LICENSE",
"index.js",
"lib/**",
"dist/**",
"!dist/tsconfig.tsbuildinfo"
]
}