UNPKG

pokerlib-cpp

Version:

C++ poker hand evaluation library for Node.js

72 lines (71 loc) 1.6 kB
{ "name": "pokerlib-cpp", "version": "1.0.5", "description": "C++ poker hand evaluation library for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "install": "node-gyp rebuild", "build": "tsc", "prepublishOnly": "npm run build", "test": "jest", "lint": "eslint --ext .ts src", "format": "prettier --write \"src/**/*.ts\"", "docs": "typedoc src/index.ts", "clean": "rimraf dist" }, "files": [ "dist", "binding", "src", "omp", "include", "libdivide", "binding.gyp", "README.md" ], "keywords": [ "poker", "card", "evaluation", "equity", "hand", "analysis" ], "author": "Jens Roth", "license": "MIT", "dependencies": { "bindings": "^1.5.0", "node-addon-api": "^6.1.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.57.1", "@typescript-eslint/parser": "^5.57.1", "eslint": "^8.37.0", "jest": "^29.5.0", "node-gyp": "^9.4.0", "prettier": "^2.8.7", "rimraf": "^4.4.1", "ts-jest": "^29.1.0", "typedoc": "^0.24.1", "typescript": "^5.0.3" }, "engines": { "node": ">=14.0.0" }, "gypfile": true, "directories": { "example": "examples", "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/jensroth-git/pokerlib-cpp.git" }, "bugs": { "url": "https://github.com/jensroth-git/pokerlib-cpp/issues" }, "homepage": "https://github.com/jensroth-git/pokerlib-cpp#readme" }