forked from diogoscf/github-lines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "github-lines",
"version": "1.0.0",
"description": "Cross-platform bot to highlight lines in GitHub links.",
"homepage": "https://github.com/diogoscf/github-lines",
"main": "bot.js",
"bugs": "https://github.com/diogoscf/github-lines/issues",
"repository": "github:diogoscf/github-lines",
"author": "diogoscf <[email protected]> (https://diogos.cf)",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"nodejs",
"discord.js",
"telegram",
"github"
],
"scripts": {
"build": "tsc",
"start": "node build/app.js --discord --telegram",
"start-discord": "node build/app.js --discord",
"start-telegram": "node build/app.js --telegram",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"lint": "eslint src --ext js,ts",
"lint-fix": "eslint src --ext js,ts --fix"
},
"dependencies": {
"dblapi.js": "^2.4.1",
"discord.js": "^12.5.1",
"discord.js-commando": "git+https://github.com/discordjs/Commando.git",
"dotenv": "^8.2.0",
"matrix-bot-sdk": "^0.5.11",
"node-fetch": "^2.6.1",
"node-telegram-bot-api": "0.50.0",
"prismajs": "^1.0.2",
"ts-is-present": "^1.1.5"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/core-js": "^2.5.4",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.1",
"@types/node-telegram-bot-api": "^0.50.4",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
}
}