regexpify
Version:
Turn a string to a regexp
40 lines (39 loc) • 874 B
JSON
{
"name": "regexpify",
"version": "0.0.0",
"description": "Turn a string to a regexp",
"homepage": "https://github.com/stevemao/regexpify",
"author": {
"name": "Steve Mao",
"email": "maochenyan@gmail.com",
"url": "https://github.com/stevemao"
},
"repository": "stevemao/regexpify",
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"regexpify",
"regex",
"regexp",
"RegEx",
"RegExp",
"string"
],
"dependencies": {
"escape-string-regexp": "^1.0.3"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.8",
"jscs": "^1.11.3",
"jshint": "^2.6.3",
"mocha": "*"
},
"scripts": {
"coverage": "istanbul cover _mocha -- -R spec && rm -rf ./coverage",
"lint": "jshint *.js --exclude node_modules && jscs *.js",
"test": "npm run-script lint && mocha"
}
}