forked from SebastiaanYN/Open-SourceBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "open-sourcebot",
"version": "1.0.0",
"description": "An open-source bot project from TheSourceCode",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "npm run lint",
"lint": "eslint .",
"pretty": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-SourceCode/Open-SourceBot.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/The-SourceCode/Open-SourceBot/issues"
},
"homepage": "https://github.com/The-SourceCode/Open-SourceBot#readme",
"dependencies": {
"common-tags": "^1.8.0",
"discord.js": "^11.5.1",
"got": "^9.6.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^7.2.3",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "1.18.2"
},
"engines": {
"node": ">=10.0.0"
}
}