-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "detritus-proxy-gateway",
"version": "0.0.1",
"description": "A Discord Proxy Gateway (Does not mock Proxy), uses MongoDB to store any important states (e.g. Ready Payload, Guilds, Channels, etc..) that you normally get only once",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/mongodb": "^3.1.32",
"@types/mongoose": "^5.5.12",
"detritus-client-rest": "^0.4.12",
"detritus-client-socket": "^0.2.12",
"detritus-utils": "^0.1.4",
"mongoose": "^5.6.9"
},
"devDependencies": {
"@types/node": "^12.0.10",
"typedoc": "^0.15.0"
},
"peerDependencies": {},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"typedoc": "typedoc ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/detritusjs/proxy-gateway.git"
},
"keywords": [
"typescript",
"nodejs",
"discord",
"library",
"full",
"mongodb",
"mock",
"gateway"
],
"author": "cakedan",
"license": "MIT",
"bugs": {
"url": "https://github.com/detritusjs/proxy-gateway/issues"
},
"homepage": "https://github.com/detritusjs/proxy-gateway#readme"
}