crobinson42/string-format-validation

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "string-format-validation",
  "description": "Javascript util library to format & validate strings (or Numbers)",
  "main": "dist/bundle.js",
  "scripts": {
    "test": "standard src/**/* && mocha test/",
    "dev": "webpack-dev-server --config webpack.dev.config.js --content-base dev/ --hot --inline",
    "build": "rollup -c && babel dist/bundle.js -o dist/bundle.js",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/crobinson42/string-format-validation.git"
  },
  "keywords": [
    "string",
    "format",
    "mask",
    "string-mask",
    "validator.js",
    "validate",
    "input",
    "number",
    "react"
  ],
  "author": "coryrobinson42@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/crobinson42/string-format-validation/issues"
  },
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-core": "^6.14.0",
    "babel-loader": "^6.2.5",
    "babel-preset-es2015": "^6.14.0",
    "mocha": "^3.0.2",
    "rollup": "^0.34.13",
    "semantic-release": "^4.3.5",
    "standard": "^8.0.0",
    "webpack": "^1.13.2",
    "webpack-dev-server": "^1.15.1"
  },
  "dependencies": {
    "string-mask": "^0.3.0",
    "validator": "^5.6.0"
  },
  "standard": {
    "globals": [
      "describe",
      "it"
    ]
  },
  "homepage": "https://github.com/crobinson42/string-format-validation#readme"
}