-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "spm-agent-nodejs",
"version": "4.2.7",
"description": "Node.js monitoring agent for SPM by Sematext",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "npm run lint && mocha --exit test/test.js",
"lint": "standard",
"doc": "doxx --source . -i node_modules,spmlog,spmdb -t \"SPM Agent\" ./docs",
"auto-changelog": "auto-changelog",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/sematext/spm-agent-nodejs.git"
},
"keywords": [
"SPM",
"APM",
"application performance monitoring",
"Sematext",
"performance monitoring",
"monitoring",
"alerting",
"anomaly detection",
"heartbeat",
"metrics",
"custom metrics",
"devops",
"operations",
"dashboards",
"profiling",
"memwatch",
"gc-profiler",
"agent",
"logging"
],
"author": "Sematext Group, Inc.",
"license": "Copyright (c) Sematext Group, Inc.",
"bugs": {
"url": "https://github.com/sematext/spm-agent-nodejs/issues"
},
"homepage": "http://www.sematext.com",
"dependencies": {
"adm-zip": "^0.4.14",
"measured-core": "^1.51.1",
"spm-agent": "^2.2.5"
},
"optionalDependencies": {
"minimist": "^1.2.6",
"@sematext/gc-stats": "^1.5.8"
},
"devDependencies": {
"auto-changelog": "^1.16.2",
"babel-eslint": "^10.0.3",
"mocha": "^10.2.0",
"release-it": "^16.1.3",
"standard": "^14.3.1",
"request": "^2.88.0"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "RELEASE_IT_GITHUB_TOKEN",
"releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs",
"____comment": "\"assets\": [\"dist/agent-*\"]"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"standard": {
"parser": "babel-eslint"
}
}