-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "@bezier/werewolf-server",
"version": "0.6.0",
"description": "One Night Ultimate Werewolf (Node.js Server)",
"type": "module",
"bin": {
"werewolf-server": "dist/cli.js"
},
"main": "dist/index.js",
"scripts": {
"start": "node dist/cli.js",
"build": "rimraf dist && tsc -p src",
"debug": "tsc -p src --incremental --sourceMap",
"test": "npm run lint && npm run jest",
"lint": "eslint --ext=js,ts .",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takashiro/bezier-werewolf-server.git"
},
"keywords": [
"werewolf",
"board",
"game",
"one",
"night",
"werewolf"
],
"author": "Kazuichi Takashiro",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/takashiro/bezier-werewolf-server/issues"
},
"homepage": "https://github.com/takashiro/bezier-werewolf-server#readme",
"files": [
"dist"
],
"dependencies": {
"@bezier/werewolf-core": "^0.6.1",
"express": "^4.18.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.5.2"
}
}