-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "wall-e",
"version": "1.0.0",
"description": "Flat bot.",
"private": true,
"main": "bot.js",
"dependencies": {
"discord.js": "^12.5.3",
"google-spreadsheet": "^3.1.15"
},
"devDependencies": {
"@types/google-spreadsheet": "^3.1.3",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"env-cmd": "^10.1.0",
"eslint": "^7.28.0",
"typescript": "^4.3.3"
},
"scripts": {
"start": "env-cmd -f .env node build/main.js",
"watch": "tsc -p tsconfig.json -w",
"build": "tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-check": "eslint src/",
"lint-fix": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alextompkins/wall-e.git"
},
"keywords": [
"discord"
],
"author": "Alex Tompkins",
"license": "ISC",
"bugs": {
"url": "https://github.com/alextompkins/wall-e/issues"
},
"homepage": "https://github.com/alextompkins/wall-e#readme"
}