UNPKG

react-memory-game

Version:
91 lines (90 loc) 2.46 kB
{ "name": "react-memory-game", "version": "1.1.1", "description": "A memory game engine.", "main": "dist/index.js", "directories": { "doc": "docs" }, "scripts": { "commit": "git-cz", "coverage": "jest --coverage", "report-coverage": "cat ./coverage/lcov.info | codecov", "check-coverage": "istanbul check-coverage -statements 25 -branches 25 -functions 25 -lines 25", "test": "jest --watch", "travis-deploy-once": "travis-deploy-once", "semantic-release": "semantic-release", "prebuild": "rimraf dist", "build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src", "build:umd": "webpack --output-filename index.umd.js", "build:umd.min": "webpack --output-filename index.umd.min.js -p", "build": "npm-run-all --parallel build:*" }, "repository": { "type": "git", "url": "https://github.com/guioconnor/react-memory-game.git" }, "keywords": [ "memory", "game", "gaming", "engine", "board", "pattern", "children" ], "files": [ "dist", "README.md" ], "author": "", "license": "ISC", "bugs": { "url": "https://github.com/guioconnor/react-memory-game/issues" }, "homepage": "https://github.com/guioconnor/react-memory-game#readme", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-jest": "^22.4.1", "babel-loader": "^7.1.4", "babel-plugin-transform-class-properties": "^6.24.1", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.6.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "codecov.io": "^0.1.6", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.1.0", "enzyme": "^3.3.0", "enzyme-adapter-react-16": "^1.1.1", "enzyme-to-json": "^3.3.1", "ghooks": "^2.0.2", "istanbul": "^0.4.5", "jest": "^22.4.2", "jest-babel": "^1.0.1", "npm-run-all": "^4.1.2", "react": "^16.2.0", "react-dom": "^16.2.0", "regenerator-runtime": "^0.11.1", "rimraf": "^2.6.2", "semantic-release": "^15.0.2", "travis-deploy-once": "^4.4.0", "webpack": "^4.1.1" }, "peerDependencies": { "lodash": "^4.17.5", "react": "^16.2.0" }, "czConfig": { "path": "node_modules/cz-conventional-changelog" }, "config": { "ghooks": { "pre-commit": "yarn coverage && yarn check-coverage" } }, "dependencies": { "webpack-cli": "^2.0.11" } }