SimpliField/regexp-tpl

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "regexp-tpl",
  "version": "2.0.1",
  "description": "Templated regular expressions.",
  "main": "src/index.js",
  "files": [
    "src/index.js",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "test": "mocha src/*.mocha.js",
    "cover": "istanbul cover --report html _mocha -- src/**/*.mocha.js -R spec -t 5000",
    "coveralls:build": "istanbul cover --include-all-sources _mocha --report lcovonly -- src/**/*.mocha.js -R spec -t 5000",
    "coveralls:send": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage/lcov.info",
    "coveralls": "npm run coveralls:build && npm run coveralls:send",
    "lint": "eslint src/**/*.js",
    "cli": "env NPM_RUN_CLI=1",
    "preversion": "npm test && npm run lint"
  },
  "engines": {
    "node": ">=4"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:SimpliField/regexp-tpl.git"
  },
  "keywords": [
    "RegExp",
    "template"
  ],
  "author": "Nicolas Froidure (SimpliField)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SimpliField/regexp-tpl/issues"
  },
  "homepage": "https://github.com/SimpliField/regexp-tpl",
  "devDependencies": {
    "coveralls": "^3.0.2",
    "eslint": "^5.8.0",
    "eslint-config-simplifield": "^8.1.0",
    "istanbul": "^0.4.5",
    "mocha": "^5.2.0"
  },
  "dependencies": {
    "debug": "^4.1.0",
    "escape-string-regexp": "^1.0.5",
    "miniquery": "^1.1.2"
  }
}