holdem-poker
Version:
Javascript Holdem Poker Engine
45 lines • 1.06 kB
JSON
{
"name": "holdem-poker",
"version": "0.4.0",
"description": "Javascript Holdem Poker Engine",
"main": "index.js",
"scripts": {
"build": "browserify ./src/index.ts -p [ tsify --noImplicitAny ] --standalone Poker > index.js",
"dbuild": "tsc -p ./tsconfig.d.json",
"both": "npm run build && npm run dbuild",
"test": "jest",
"prepare": "npm run both"
},
"types": "./dist/index.d.ts",
"files": [
"index.js",
"dist"
],
"keywords": [
"holdem",
"poker"
],
"repository": {
"url": "https://github.com/thekoushik/holdem-poker.git",
"type": "git"
},
"author": "Koushik Seal",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.3",
"browserify": "^17.0.0",
"jest": "^29.0.3",
"ts-jest": "^29.0.3",
"tsify": "^5.0.4",
"typescript": "^4.8.3"
},
"jest": {
"testMatch": [
"**/test/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}