UNPKG

nodelike

Version:
82 lines (81 loc) 2.68 kB
{ "name": "nodelike", "version": "0.3.4", "description": "A node roguelike", "main": "build/nodelike.es5.js", "scripts": { "test": "nyc ava src/js/tests/*.js", "test-verbose": "nyc ava src/js/tests/*.js -v", "removedir": "rimraf build -f && rimraf docs -f", "createdir": "mkdir build && mkdir docs && cd docs && mkdir docs && cd ..", "clean": "npm run removedir && npm run createdir", "babel": "babel src/js -d build/", "rename": "node -e \"require('fs').renameSync('./build/nodelike.js', './build/nodelike.es5.js');\"", "make": "npm run clean && npm run babel && npm run rename", "flow": "flow", "eslint": "eslint src/js/nodelike.js", "nyc-html": "nyc ava report --reporter=html", "coverage": "nyc report --reporter=text-lcov | coveralls", "vet": "npm run flow && npm run eslint", "audit": "text_audit -t major wasteful any mixed fixme checkme testme stochable todo comeback whargarbl", "qbuild": "npm run make && npm run test-verbose && npm run docs && npm run site", "build": "npm run make && npm run vet && npm run test-verbose && npm run audit && npm run docs && npm run site", "pretest": "npm run build", "site": "cp src/site/* docs/", "docs": "documentation build src/js/** -f html -o docs/lib", "travis": "npm run coverage" }, "repository": { "type": "git", "url": "git+https://github.com/StoneCypher/nodelike.git" }, "keywords": [ "node", "roguelike", "rogue", "cli", "game", "stonecypher", "nethack", "hack", "moria", "larn", "angband", "zangband", "dungeon", "crawl" ], "author": "John Haugeland <stonecypher@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/StoneCypher/nodelike/issues" }, "homepage": "https://github.com/StoneCypher/nodelike#readme", "devDependencies": { "ava": "^0.21.0", "ava-spec": "^1.1.0", "babel-cli": "^6.24.1", "babel-eslint": "^7.2.3", "babel-plugin-transform-flow-strip-types": "^6.22.0", "babel-preset-es2015": "^6.24.1", "browserify": "^14.4.0", "coveralls": "^2.13.1", "documentation": "^4.0.0-rc.1", "eslint": "^4.2.0", "eslint-config-stonecypher": "^1.15.7", "eslint-plugin-ava": "^4.3.0", "eslint-plugin-flowtype": "^2.39.1", "eslint-plugin-fp": "^2.3.0", "eslint-plugin-jsdoc": "^3.2.0", "eslint-plugin-new-with-error": "^1.1.0", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-react": "^7.5.1", "eslint-plugin-unicorn": "^3.0.0", "flow-bin": "^0.50.0", "nyc": "^11.0.3", "rimraf": "^2.6.1" }, "dependencies": { "text_audit": "^0.9.2" } }