-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "reviewbot",
"version": "0.1.0",
"description": "",
"main": "dist/ReviewBot.js",
"scripts": {
"start": "node ./dist/ReviewBot.js",
"watch": "tsc -p -w .",
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"lint": "eslint --ext .ts --ignore-path .gitignore ./src",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore ./src --fix",
"test": "npm run lint && npm run compile:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PocketMineDevelopersJP/ReviewBot.git"
},
"author": "PocketMineDevelopersJP",
"license": "MIT",
"bugs": {
"url": "https://github.com/PocketMineDevelopersJP/ReviewBot/issues"
},
"homepage": "https://github.com/PocketMineDevelopersJP/ReviewBot#readme",
"dependencies": {
"discord.js": "github:discordjs/discord.js#master",
"dotenv": "^8.0.0",
"klasa": "github:dirigeants/klasa#v0.5.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^14.14.31",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=10.1.0"
}
}