UNPKG

bestmovedb

Version:
50 lines (49 loc) 1.19 kB
{ "name": "bestmovedb", "version": "0.4.0", "description": "database of chess best moves", "main": "main.js", "scripts": { "test": "jasmine", "tdd": "nodemon --exec jasmine", "coverage": "nyc --reporter=lcov npm test", "tdd-coverage": "nodemon --exec npm run coverage", "report-coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov", "e2e": "jasmine ./spec/e2e.js" }, "repository": { "type": "git", "url": "git+https://github.com/Scorpibear/bestmovedb.git" }, "keywords": [ "chess", "bestmoves", "best", "moves", "positions", "FEN", "PGN", "database" ], "author": "Mikhail Subach", "license": "Apache-2.0", "bugs": { "url": "https://github.com/Scorpibear/bestmovedb/issues" }, "homepage": "https://github.com/Scorpibear/bestmovedb#readme", "devDependencies": { "eslint": "^5.16.0", "istanbul": "^0.4.5", "jasmine": "^3.4.0", "nodemon": "^1.19.2", "nyc": "^14.1.1" }, "nyc": { "exclude": [ "spec/**/*.spec.js" ] }, "dependencies": { "fen-analyzer": "^0.3.1" } }