forked from brettlangdon/node-dogapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "datadog-client",
"version": "3.0.0-alpha.2",
"description": "Datadog API Node.JS Client",
"main": "src/index.js",
"engines": {
"node": ">= 8.10.0"
},
"author": "Brett Langdon <me@brett.is> (http://brett.is)",
"contributors": [
"Adriean Khisbe <adriean.khisbe@live.fr> (https://github.com/AdrieanKhisbe/)"
],
"license": "MIT",
"scripts": {
"test": "ava",
"cover": "nyc npm run test",
"publish-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint src test bin/dogapi examples",
"docs": "node ./scripts/create-documentation.js > docs/index.html"
},
"bin": {
"dogapi": "bin/dogapi",
"datadog-cli": "bin/dogapi"
},
"homepage": "https://github.com/omni-tools/node-datadog-client#readme",
"repository": {
"type": "git",
"url": "git://github.com/omni-tools/node-datadog-client"
},
"bugs": {
"url": "https://github.com/omni-tools/node-datadog-client/issues"
},
"keywords": [
"datadog",
"api",
"datadog api",
"dog",
"dogapi",
"dog api"
],
"readmeFilename": "README.md",
"dependencies": {
"extend": "^3.0.0",
"json-bigint": "^0.1.4",
"lodash": "^4.17.10",
"minimist": "^1.1.1",
"rc": "^1.2.8"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^8.1.1",
"ava": "^2.4.0",
"bignumber.js": "^2.0.7",
"codecov": "^3.2.0",
"docast": "^0.1.1",
"eslint": "^5.15.1",
"glob": "^6.0.0",
"js-yaml": "^3.2.7",
"marked": "^0.3.9",
"nyc": "^13.3.0",
"sinon": "^1.15.4"
}
}