UNPKG

impossible-breakout

Version:

Impossible Breakout is a terminal based version of the classic Breakout game. Made with Impossible.js.

73 lines 2.5 kB
{ "name": "impossible-breakout", "bin": { "breakout": "./bin/impossible-breakout.js" }, "files": [ "/bin" ], "version": "0.0.1", "description": "Impossible Breakout is a terminal based version of the classic Breakout game. Made with Impossible.js.", "repository": { "type": "git", "url": "git@github.com:ronilan/impossible-breakout.git" }, "keywords": [ "Impossible", "Impossible.js", "Breakout", "Game" ], "author": { "name": "Ron Ilan", "url": "https://www.ronilan.com" }, "license": "UNLICENSED", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "watch:node": "webpack --watch --config webpack.config.node.js", "watch:web": "webpack --watch --config webpack.config.web.js", "lint": "npx eslint src/** --fix", "build:node": "webpack --config webpack.config.node.js --mode production", "build:web": "webpack --config webpack.config.web.js --mode production", "build": "npm run build:web && npm run build:node", "prepublishOnly": "node scripts/prepublishOnly", "postpack": "node scripts/postpack", "start": "npm run watch:node & npm run watch:web & webpack-dev-server --config webpack.config.web.js" }, "impossible": { "acknowledgment": { "tools": { "@babel/core": "^7.12.3", "@babel/eslint-parser": "^7.12.1", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", "@babel/plugin-proposal-optional-chaining": "^7.12.1", "@babel/preset-env": "^7.12.1", "babel-loader": "^8.1.0", "eslint": "^7.13.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.2", "fs-extra": "^9.0.1", "webpack": "^5.4.0", "webpack-cli": "^3.3.12", "webpack-dev-server": "^3.11.0", "webpack-merge": "^4.2.1" }, "bundled": { "@impossible.js/animated": "0.0.2", "@impossible.js/dynamic-body": "0.0.2", "@impossible.js/screen": "0.0.2", "@impossible.js/sprite": "0.0.2", "@impossible.js/stage": "0.0.2", "@impossible.js/stage-web": "0.0.2", "@impossible.js/static-body": "0.0.2", "@impossible.js/text": "0.0.2", "@impossible.js/typewriter": "0.0.2" } } } }