This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
{
"name": "hacktoberfest-akairo-bot",
"version": "1.0.0",
"description": "A Discord bot using the Akairo framework to increase your PR count for Hacktoberfest!",
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RuyiLi/hacktoberfest-akairo-bot/issues"
},
"homepage": "https://github.com/RuyiLi/hacktoberfest-akairo-bot#readme",
"main": "index.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"lint": "eslint ./ --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuyiLi/hacktoberfest-akairo-bot.git"
},
"keywords": [
"hacktoberfest",
"discord",
"akairo",
"discord.js",
"bot"
],
"dependencies": {
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"discord-akairo": "discord-akairo/discord-akairo",
"discord.js": "discordjs/discord.js",
"moment": "^2.24.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.3"
},
"eslintConfig": {
"extends": "standard",
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true
},
"rules": {
"no-tabs": 0,
"indent": [
"error",
"tab"
],
"semi": [
"error",
"always"
],
"no-extra-semi": [
"error"
]
}
}
}