-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.79 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
{
"name": "heimdall",
"version": "0.0.4",
"type": "module",
"private": true,
"author": "Antonio Salazar Cardozo <[email protected]>",
"description": "Heimdall can see and hear your every need, and keeps watch for the onset of Ragnarok",
"dependencies": {
"@types/cookie": "^0.3.1",
"@types/cookie-parser": "^1.4.3",
"@types/hubot": "^3.3.2",
"@types/jsonwebtoken": "~7.2.8",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"@types/node-schedule": "^2.1.0",
"@types/passport": "^1.0.12",
"@types/passport-github2": "^1.2.5",
"@types/uuid": "^9.0.1",
"axios": "^1.6.1",
"canvas": "^2.11.0",
"coffeescript": "^2",
"cookie-parser": "^1.4.3",
"cron-parser": "^2.7.3",
"cronstrue": "^1.68.0",
"decode-html": "^2.0.0",
"discord.js": "^14.8.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"figma-api": "^1.11.0",
"github-api": "^3.4.0",
"hubot": "git+https://github.com/thesis/hubot.git#v4.0.0-alpha.1",
"hubot-diagnostics": "^1.0.0",
"hubot-discord": "git+https://github.com/thesis/hubot-discord.git#v3.0.0-alpha.10",
"hubot-even-better-help": "git+https://github.com/thesis/hubot-even-better-help.git#3192eedf2a0f11dd0b5fa736e0b9033741a59050",
"hubot-gif-locker": "^1.0.7",
"hubot-matrix": "git+https://github.com/thesis/hubot-matrix.git#v3.0.0-beta.5",
"hubot-redis-brain": "^1.0.0",
"hubot-rules": "^0.1.2",
"hubot-scripts": "^2.17.2",
"hubot-shipit": "git+https://github.com/thesis/hubot-shipit.git#d9169c374d0a95cafaaa8f69dca501ea29d4f933",
"js-base64": "^3.7.2",
"jsonwebtoken": "~9.0.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"matrix-js-sdk": "^20.1.0",
"moment": "^2.29.4",
"node-schedule": "1.3.2",
"passport": "0.6.0",
"passport-github2": "0.1.12",
"typescript": "^5.1.6",
"uuid": "^3.2.1"
},
"engines": {
"node": "<=19 >=16"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@thesis-co/eslint-config": "^0.6.1",
"eslint": "^8.35.0",
"hubot-chat-testing": "git+https://github.com/thesis/hubot-chat-testing.git#v2.0.0-beta.1",
"hubot-test-helper": "git+https://github.com/thesis/hubot-test-helper.git#v2.0.0-beta.3",
"jest": "^29.3.1",
"mocha": "10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"scripts": {
"test:mocha": "env NODE_OPTIONS'=--experimental-vm-modules --experimental-loader ts-node/esm' mocha --exit test/**.ts",
"test:jest": "env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "run-p test:jest",
"lint:types": "tsc -p ./tsconfig.json",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint": "run-p lint:js lint:types"
}
}