-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 898 Bytes
/
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
{
"name": "@chevtek/poker-engine",
"version": "1.2.14",
"description": "A headless no-limit Texas Hold'em engine written completely in node.",
"main": "./build/index.js",
"scripts": {
"version": "node ./generate-readme.js && git add ./README.md",
"postversion": "npm publish && git push",
"install": "npm run build",
"clean": "rimraf ./build",
"build": "npm run clean &&tsc --project ./tsconfig.json"
},
"keywords": [
"poker",
"texas holdem",
"texas hold'em",
"holdem",
"hold'em"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chevtek/poker-engine.git"
},
"author": {
"name": "Chev",
"email": "[email protected]",
"url": "https://chevtek.io"
},
"license": "ISC",
"dependencies": {
"pokersolver": "^2.1.4",
"rimraf": "^3.0.2"
},
"devDependencies": {
"typescript": "^4.0.2"
}
}