-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
132 lines (132 loc) · 3.96 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "butler",
"version": "13.1.2",
"description": "Superpowers for Qlik Sense. Task scheduling, key-value store, advanced alerting and more.",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test2": "node_modules/jshint/bin/jshint butler.js",
"format1": "npm run format",
"format": "npm run format:prettier",
"format:prettier": "npx prettier --config .prettierrc \"./**/*.{ts,css,less,js,html}\" --write",
"butler": "node src/butler.js",
"lint": "npx eslint ./src/**/*.js"
},
"jest": {
"transform": {},
"setupFiles": [
"./src/test/env.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptarmiganlabs/butler.git"
},
"keywords": [
"butler",
"senseops",
"devops",
"qliksense",
"qlik sense",
"alerts",
"alerting",
"incident response",
"scheduler",
"task chaining"
],
"author": "Göran Sander",
"license": "MIT",
"bugs": {
"url": "https://github.com/ptarmiganlabs/butler/issues"
},
"homepage": "https://github.com/ptarmiganlabs/butler",
"files": [
"butler.js"
],
"type": "module",
"exports": "./butler.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"@breejs/later": "^4.2.0",
"@fastify/autoload": "^5.10.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/reply-from": "^9.8.0",
"@fastify/sensible": "^5.6.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"@keyvhq/core": "^2.1.1",
"@xstate/fsm": "^2.1.0",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"any-base": "^1.1.0",
"axios": "^1.7.8",
"commander": "^12.1.0",
"config": "^3.3.12",
"cron-job-manager": "^2.3.1",
"email-validator": "^2.0.4",
"enigma.js": "^2.14.0",
"express-handlebars": "^7.1.3",
"fastify": "^4.28.1",
"fastify-healthcheck": "^4.4.0",
"fastify-plugin": "^4.5.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"http-errors": "^2.0.0",
"i": "^0.3.7",
"influx": "^5.9.3",
"is-unc-path": "^1.0.0",
"jjsontree.js": "^2.9.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"moment-precise-range-plugin": "^1.3.0",
"mqtt": "^5.10.3",
"ms-teams-wrapper": "^1.0.2",
"nodemailer": "^6.9.16",
"nodemailer-express-handlebars": "^6.1.2",
"npm-check": "^6.0.1",
"os": "^0.1.2",
"posthog-node": "^4.3.1",
"promise": "^8.3.0",
"qrs-interact": "^6.3.1",
"rate-limiter-flexible": "^5.0.4",
"serializeapp": "^3.0.0",
"systeminformation": "^5.23.5",
"upath": "^2.0.1",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.0",
"xstate": "^5.19.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@eslint/js": "^9.16.0",
"esbuild": "^0.24.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"snyk": "^1.1294.2"
},
"pkg": {
"assets": [
"node_modules/axios/**/*",
"node_modules/fsevents/fsevents.node",
"../docs/api_doc/butler-api.yaml",
"node_modules/@fastify/swagger",
"static/**/*",
"package.json"
],
"scripts": [
"node_modules/enigma.js/**/*.json",
"node_modules/js-yaml/**/*.js"
]
}
}