UNPKG

cube-notation-normalizer

Version:

Parse and "normalize" Rubik's Cube algorithm notations

45 lines (44 loc) 1.16 kB
{ "name": "cube-notation-normalizer", "version": "1.0.0", "description": "Parse and \"normalize\" Rubik's Cube algorithm notations", "main": "index.js", "types": "types/index.d.ts", "scripts": { "lint": "eslint **/*.js", "prepublish": "npm run build", "build": "pegjs notation.pegjs", "test": "jest", "test:cover": "jest --coverage", "coveralls": "cat ./coverage/lcov.info | coveralls" }, "author": "Zahajki", "repository": { "type": "git", "url": "git+https://github.com/Zahajki/cube-notation-normalizer.git" }, "license": "MIT", "keywords": [ "rubik's cube", "notation", "algorithm", "scramble", "parse", "normalize" ], "devDependencies": { "coveralls": "^3.0.0", "eslint": "^4.14.0", "eslint-config-standard": "^11.0.0-beta.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-node": "^5.2.1", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-standard": "^3.0.1", "jest": "^22.0.4", "pegjs": "^0.10.0" }, "dependencies": { "lodash": "^4.17.4" }, "runkitExample": "const normalize = require('cube-notation-normalizer')" }