UNPKG

type-reverse

Version:

🦄 Lightweight reverse utility around strings, arrays, numbers and more.

84 lines (83 loc) • 2.2 kB
{ "name": "type-reverse", "version": "2.0.2", "repository": "whizkydee/type-reverse", "main": "build/index.js", "description": "🦄 Lightweight reverse utility around strings, arrays, numbers and more.", "author": { "name": "Olaolu Olawuyi", "email": "mrolaolu@gmail.com", "url": "https://twitter.com/mrolaolu" }, "license": "MIT", "homepage": "https://github.com/whizkydee/type-reverse#readme", "scripts": { "lint": "eslint src", "test": "jest", "build": "babel src --out-dir build && npm run minify && del-cli \"build/__tests__\"", "start": "del-cli build && npm run lint && npm run build && npm test", "minify": "uglifyjs build/util.js $npm_package_main -cm --source-map -o $npm_package_main", "release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish", "prepare": "npm run build" }, "keywords": [ "🦄", "array", "arrays", "string", "strings", "number", "numbers", "set", "sets", "reverse", "invert", "inversion", "reversal", "undo", "inverse", "opposite", "integer", "integers", "change", "swap", "switch" ], "files": [ "build" ], "engines": { "node": ">=4" }, "jest": { "testEnvironment": "node" }, "babel": { "presets": [ "env" ], "plugins": [ "transform-minify-booleans", "minify-dead-code-elimination", "minify-flip-comparisons", "minify-guarded-expressions", "transform-merge-sibling-variables", "minify-simplify" ] }, "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "^8.0.3", "babel-plugin-minify-dead-code-elimination": "^0.2.0", "babel-plugin-minify-flip-comparisons": "^0.2.0", "babel-plugin-minify-guarded-expressions": "^0.2.0", "babel-plugin-minify-simplify": "^0.2.0", "babel-plugin-transform-merge-sibling-variables": "^6.8.6", "babel-plugin-transform-minify-booleans": "^6.8.3", "babel-preset-env": "^1.6.1", "del-cli": "^1.1.0", "eslint": "^4.13.1", "jest-cli": "^22.4.4", "uglify-js": "^3.4.7" } }