{ "name": "cards", "description": "Basic playing cards module", "version": "2.0.3", "author": "James Brumond (http://jbrumond.me)", "scripts": { "test": "npm run test:unit", "test:unit": "mocha --config tests/.mocharc.js", "test:unit:cover": "nyc --nycrc-path tests/.nycrc.js mocha --config tests/.mocharc.js", "clean": "rimraf ./build ./docs", "docs": "typedoc --out docs src/index.ts", "build": "tsc --build tsconfig.json", "format": "prettier --write .", "format:check": "prettier --check ." }, "repository": { "type": "git", "url": "git://github.com/kbjr/node-cards.git" }, "homepage": "https://kbjr.github.io/node-cards/", "keywords": [ "cards", "games", "random", "shuffle" ], "main": "build/index.js", "license": "MIT", "devDependencies": { "@types/chai": "^4.3.0", "@types/node": "^17.0.21", "chai": "^4.3.6", "mocha": "^9.2.2", "mochawesome": "^7.1.3", "nyc": "^15.1.0", "prettier": "^2.7.1", "rimraf": "^3.0.2", "source-map-support": "^0.5.19", "ts-node": "^10.7.0", "typedoc": "^0.22.13", "typescript": "^4.3.4" } }