forked from nunofgs/pm2-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·41 lines (41 loc) · 962 Bytes
/
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
{
"name": "pm2-datadog",
"version": "0.4.1",
"description": "Forward application metrics and events to Datadog",
"license": "MIT",
"main": "index.js",
"scripts": {
"changelog": "github-changelog-generator --owner=nunofgs --repo=pm2-datadog --future-release=v$npm_package_version > CHANGELOG.md",
"lint": "eslint --cache .",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"dependencies": {
"bluebird": "^3.5.0",
"debugnyan": "^2.0.1",
"hot-shots": "^4.7.0",
"pm2": "^2.7.1",
"pmx": "^0.5.0"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^0.8.1",
"eslint": "^6.2.2",
"eslint-config-uphold": "^1.0.0"
},
"engines": {
"node": ">=7.10.0"
},
"apps": [
{
"env": {
"DEBUG": "*pm2-datadog*"
},
"script": "index.js"
}
],
"config": {
"global_tags": [],
"host": "localhost",
"interval": 10000,
"port": 8125
}
}