UNPKG

strility

Version:

Strility is a string manipulation library

63 lines (62 loc) 1.35 kB
{ "name": "strility", "version": "1.3.1", "description": "Strility is a string manipulation library", "main": "index.js", "author": "Bjarne Oeverli", "license": "MIT", "scripts": { "test": "mocha -R spec tests/*.test.js", "test-watch": "npm test -- --watch", "precommit": "lint-staged", "prepush": "npm test", "prettier": "prettier --tab-width=4 --print-width=80 --single-quote --trailing-comma=es5 --write", "format": "npm run prettier -- {src,tests}/**/*.js" }, "lint-staged": { "*.js": [ "npm run prettier", "git add" ] }, "repository": { "type": "git", "url": "https://github.com/bjarneo/strility.git" }, "homepage": "https://github.com/bjarneo/strility", "bugs": { "url": "https://github.com/bjarneo/strility/issues" }, "keywords": [ "strility", "string", "isString", "isLowerCase", "isUpperCase", "swapCase", "shuffle", "surround", "chars", "among", "between", "replace", "all", "library", "utility", "manipulation" ], "engineStrict": true, "engines": { "node": ">=6.0.0" }, "devDependencies": { "husky": "^0.13.2", "lint-staged": "^3.4.2", "mocha": "^3.2.0", "prettier": "^1.3.1" }, "dependencies": { "among": "^2.0.0", "knuth-shuffle": "^1.0.1" } }