-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.76 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
{
"name": "spm-agent",
"version": "2.2.5",
"description": "Node.js agent framework for SPM by Sematext",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --exit test/test.js",
"lint": "standard",
"auto-changelog": "auto-changelog",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/sematext/spm-agent.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",
"strongloop-agent",
"logging"
],
"author": "Sematext Group, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sematext/spm-agent/issues"
},
"homepage": "http://www.sematext.com",
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"@yetzt/nedb": "^1.8.0",
"extend": "^3.0.2",
"flat": "^5.0.2",
"influx": "^5.5.1",
"moment": "^2.24.0",
"node-fetch": "^2.6.9",
"pidusage-tree": "^2.0.5",
"rc-yaml-2": "^1.0.2",
"winston": "^2.4.4"
},
"devDependencies": {
"auto-changelog": "^1.16.2",
"babel-eslint": "^10.0.3",
"mocha": "^10.1.0",
"release-it": "^16.1.0",
"standard": "^14.3.1"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "RELEASE_IT_GITHUB_TOKEN",
"releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"standard": {
"parser": "babel-eslint"
}
}