-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "discord-nullbot",
"version": "0.1.0",
"description": "NullBot for Discord",
"main": "index.js",
"scripts": {
"build": "npm run gulp:build -s",
"start": "npm run gulp:start -s",
"test": "npm run gulp:test -s",
"gulp:build": "gulp build",
"gulp:lint": "gulp lint",
"gulp:start": "gulp start",
"gulp:test": "gulp test",
"gulp:watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullforce-public/discord-nullbot.git"
},
"keywords": [
"discord",
"discordjs",
"chatbot"
],
"author": "nullforce",
"license": "MIT",
"bugs": {
"url": "https://github.com/nullforce-public/discord-nullbot/issues"
},
"homepage": "https://github.com/nullforce-public/discord-nullbot#readme",
"dependencies": {
"@mixer/client-node": "^3.5.0",
"discord-akairo": "^7.5.6",
"discord.js": "^11.6.4",
"dotenv": "^8.2.0",
"node-derpi": "^1.0.5",
"sqlite": "^3.0.6"
},
"devDependencies": {
"@types/node": "^12.19.11",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"ini": "^2.0.0",
"nodemon": "^1.19.4",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"yargs-parser": "^20.2.4"
}
}