-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1023 Bytes
/
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
{
"name": "@eris-sharder/core",
"version": "1.0.0",
"description": "A lib-agnostic Discord sharding control plane",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"chalk": "^2.4.1",
"dotenv": "^8.0.0",
"jethro": "^4.4.0",
"uuid": "^3.3.2"
},
"optionalDependencies": {
"eris": "^0.9.0"
},
"devDependencies": {
"@types/node": "~10.10.3",
"typescript": "^3.5.2",
"typedoc": "^0.14.2"
},
"scripts": {
"test": "node ./tests/test.js",
"fix": "tslint --fix -p tsconfig.json",
"build": "tsc --pretty -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Discord-Sharders/core.git"
},
"keywords": [
"eris",
"sharder",
"sharding",
"discord"
],
"engines": {
"node": ">=8.0.0"
},
"author": "John Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/Discord-Sharders/core/issues"
},
"homepage": "https://github.com/Discord-Sharders/core#readme"
}