forked from diogoscf/github-lines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.69 KB
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
{
"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 <diogo@diogos.cf> (https://diogos.cf)",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"nodejs",
"discord.js",
"telegram",
"github"
],
"scripts": {
"build": "tsc",
"start": "node build/app.js",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"lint": "eslint src --ext js,ts",
"lint-fix": "eslint src --ext js,ts --fix"
},
"dependencies": {
"@sapphire/decorators": "^3.1.3",
"@sapphire/framework": "^2.1.3",
"@sapphire/pieces": "^3.1.0",
"@sapphire/plugin-editable-commands": "^1.0.1",
"@sapphire/ts-config": "^3.1.3",
"discord.js": "^13.2.0",
"discord.js-commando": "^0.12.3",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.7",
"ts-is-present": "^1.1.5"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/core-js": "^2.5.4",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.1",
"@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": "^10.2.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.0",
"typescript": "^4.4.4"
}
}