UNPKG

nes-tetris-representation

Version:

A set of types and classes that represent the pieces, movement, and rng of NES Tetris

49 lines (48 loc) 1.34 kB
{ "name": "nes-tetris-representation", "version": "2.0.0", "description": "A set of types and classes that represent the pieces, movement, and rng of NES Tetris", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "devDependencies": { "prettier": "^2.1.2", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.0.5", "cpy-cli": "^3.1.1", "del-cli": "^3.0.1", "ts-jest": "^26.4.4" }, "dependencies": { "@types/classnames": "^2.2.11", "@types/jest": "^26.0.15", "@types/lodash": "^4.14.165", "@types/react": "^16.9.56", "classnames": "^2.2.6", "jest": "^26.6.3", "lodash": "^4.17.20", "react": "^17.0.1" }, "scripts": { "prebuild": "del-cli lib", "build": "tsc", "postbuild": "cpy \"**/*\" \"!**/*.ts*\" \"../lib\" --cwd=\"src/\" --parents", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "test": "jest" }, "author": "Josh Peaker", "keywords": [ "Tetris", "NES" ], "license": "ISC" }