-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "tug-of-war",
"version": "0.6.2",
"description": "Single-server Discord counting bot mixed with tug of war",
"main": "index.js",
"scripts": {
"start": "babel-node --experimental-modules --es-module-specifier-resolution=node .",
"test": "test",
"lint": "eslint .",
"lint-f": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajivoin/tug-of-war.git"
},
"author": "https://github.com/ajivoin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajivoin/tug-of-war/issues"
},
"homepage": "https://github.com/ajivoin/tug-of-war#readme",
"dependencies": {
"discord.js": "^14.5.0",
"underscore": "^1.13.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.14.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
},
"type": "module"
}