-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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": "@kobalab/majiang-server",
"version": "1.4.3",
"description": "麻雀サーバー",
"publishConfig": {
"access": "public"
},
"bin": {
"majiang-server": "./bin/server.js",
"majiang-bot": "./bin/client.js"
},
"scripts": {
"test": "mocha -u tdd",
"test:cover": "nyc -r lcov -r text npm test",
"start": "node bin/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobalab/majiang-server.git"
},
"keywords": [
"麻雀",
"電脳麻将"
],
"author": "Satoshi Kobayashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobalab/majiang-server/issues"
},
"homepage": "https://github.com/kobalab/majiang-server#readme",
"dependencies": {
"@kobalab/majiang-ai": "^1.0.13",
"@kobalab/majiang-core": "^1.3.2",
"express": "^4.21.2",
"express-session": "^1.18.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-hatena-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"session-file-store": "^1.5.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"mocha": "^11.1.0",
"nyc": "^17.1.0"
}
}