-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "saboteur-engine",
"version": "1.0.0",
"description": "Saboteur game engine",
"main": "index.ts",
"scripts": {
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"type-check": "tsc --noEmit",
"lint": "npm run eslint && npm run type-check",
"lint.fix": "npm run eslint -- --fix && npm run type-check",
"test": "jest",
"example": "npx ts-node ./example/index.ts"
},
"keywords": [
"saboteur",
"game",
"engine"
],
"contributors": [
"Alistair Brown <[email protected]>"
],
"homepage": "https://github.com/saboteur-game/engine/",
"bugs": "https://github.com/saboteur-game/engine/issues",
"repository": {
"type": "git",
"url": "[email protected]:saboteur-game/engine.git"
},
"license": "MIT",
"dependencies": {
"@types/uuid": "^8.0.0",
"eventemitter2": "^6.4.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}