This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@colyseus/social",
"version": "0.11.7",
"description": "Authentication and Social features for Colyseus",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"watch": "tsc -w",
"clean": "find . -name '*.js' -not -path './node_modules/*' -not -path './src/webpush_register.js' | xargs rm && find . -name '*.d.ts' -not -path './node_modules/*' | xargs rm",
"test": "mocha --require ts-node/register test/**Test.ts test/**/*Test.ts --exit",
"prepublish": "npx tsc"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/colyseus/colyseus-social.git"
},
"keywords": [
"colyseus",
"multiplayer",
"social",
"facebook",
"friendlist"
],
"author": "Endel Dreyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/colyseus-social/issues"
},
"homepage": "https://github.com/colyseus/colyseus-social#readme",
"dependencies": {
"@types/mongoose": "^5.3.27",
"debug": "^4.1.1",
"httpie": "^1.1.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.6",
"nanoid": "^2.0.2",
"node-pushnotifications": "^1.1.8",
"oauth": "^0.9.15",
"strong-events": "^1.0.7"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/express": "^4.16.1",
"@types/express-jwt": "0.0.42",
"@types/jsonwebtoken": "^8.3.2",
"@types/mocha": "^5.2.6",
"@types/nanoid": "^2.0.0",
"@types/node-pushnotifications": "^1.0.1",
"@types/oauth": "^0.9.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"express-jwt": "^5.3.1",
"mocha": "^6.1.4",
"mongodb": "^3.2.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"express": "^4.16.4",
"express-jwt": "^5.3.1"
}
}