forked from claudijo/poker-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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": "poker-ts",
"version": "1.4.0",
"description": "Texas Hold 'Em Poker table model with convenience features for running real games.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"test": "jest",
"watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/claudijo/poker-ts.git"
},
"homepage": "https://github.com/claudijo/poker-ts",
"bugs": {
"url": "https://github.com/claudijo/poker-ts/issues"
},
"keywords": [
"poker",
"poker engine",
"poker game",
"poker game engine",
"texas hold'em",
"texas holdem",
"hold'em",
"holdem"
],
"author": "Claudijo Borovic <claudijo.borovic@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}