UNPKG

godash

Version:

Data structures and utilities to represent the game of Go

62 lines (61 loc) 1.64 kB
{ "name": "godash", "version": "2.3.2", "description": "Data structures and utilities to represent the game of Go", "homepage": "https://github.com/duckpunch/godash", "repository": { "type": "git", "url": "https://github.com/duckpunch/godash.git" }, "main": "dist/godash.js", "types": "types/index.d.ts", "keywords": [ "go", "weiqi", "baduk", "immutable" ], "author": { "name": "duckpunch", "url": "https://github.com/duckpunch" }, "license": "ISC", "dependencies": { "immutable": "^4.1.0", "lodash": "^4.17.20" }, "devDependencies": { "@babel/core": "^7.18.5", "@babel/preset-env": "^7.18.2", "babel-loader": "^8.2.5", "benchmark": "^2.1.4", "eslint": "^8.19.0", "eslint-plugin-jest": "^26.5.3", "jest": "^28.1.1", "jsdoc-to-markdown": "^7.1.1", "node-qunit-puppeteer": "^2.1.0", "webpack": "^5.76.0", "webpack-cli": "^4.10.0" }, "scripts": { "prepare": "webpack", "build": "webpack", "lint": "eslint src", "lint-fix": "eslint --fix src", "watch": "webpack --watch --progress --debug", "watch-test": "jest --coverage --watch", "browser-test": "webpack --output-path browser/js/godash && node-qunit-puppeteer ./browser/runner.html", "test": "jest --coverage", "update-api-docs": "jsdoc2md --files src/board.js --files src/sgf.js --template templates/api.hbs --helper templates/helpers.js > docs/api.md" }, "jest": { "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } } } }