regx
Version:
Tagged template string regular expression compiler.
66 lines (65 loc) • 1.64 kB
JSON
{
"name": "regx",
"version": "1.0.4",
"description": "Tagged template string regular expression compiler.",
"main": "dist/regx.js",
"scripts": {
"build": "browserify -t babelify -s regx src/regx.js -o dist/regx.js",
"pretest": "xo src/*.js test/*.js",
"test": "npm run test-node && npm run test-browser && nyc report",
"test-browser": "browserify -t babelify ./test/regx.js | browser-run | tap-difflet",
"test-node": "nyc -r lcov blue-tape test/*.js | tap-difflet",
"watch": "watch 'npm test' src test -du"
},
"repository": {
"type": "git",
"url": "https://github.com/shannonmoeller/regx"
},
"keywords": [
"compiler",
"expression",
"regex",
"regexp",
"regular",
"rx",
"string",
"tag",
"tagged",
"template"
],
"author": "Shannon Moeller <me@shannonmoeller.com> (http://shannonmoeller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shannonmoeller/regx/issues"
},
"homepage": "https://github.com/shannonmoeller/regx",
"dependencies": {},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"blue-tape": "^0.1.11",
"browser-run": "^3.0.8",
"browserify": "^13.0.0",
"nyc": "^5.5.0",
"tap-difflet": "^0.4.0",
"watch": "^0.17.1",
"xo": "^0.12.1"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"transform-runtime"
]
},
"nyc": {
"require": [
"babel-register"
]
}
}