{
  "name": "simple-card",
  "version": "2.2.0",
  "description": "A simple plug and play credit card validation library that uses the luhn algorithm",
  "main": "dist/simple-card.min.js",
  "directories": {
    "test": "tests"
  },
  "scripts": {
    "prepack": "npm-run-all build:split create build docs",
    "postpack": "npm run clean",
    "clean": "node scripts/clean.js",
    "docs": "node scripts/docs.js",
    "create": "node scripts/create-export.js",
    "build": "rollup -c",
    "build:split": "rollup -c rollup.split.js",
    "test": "tape -r esm tests/*.js | tap-spec",
    "test:cov": "nyc npm test",
    "cov": "nyc --reporter=html npm test",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "lint": "standard --fix src/*.js"
  },
  "nyc": {
    "include": [
      "src/**"
    ],
    "exclude": [
      "tests/**"
    ]
  },
  "standard": {
    "ignore": [
      "dist/*",
      "docs.js"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dhershman1/simple-card.git"
  },
  "keywords": [
    "validation",
    "simple",
    "data",
    "simply",
    "valid",
    "frontend",
    "JS",
    "credit card"
  ],
  "author": "Dustin Hershman <dustinh17@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dhershman1/simple-card/issues"
  },
  "homepage": "https://www.dusty.codes/documentation/simple-card",
  "devDependencies": {
    "@babel/core": "7.0.0",
    "@babel/preset-env": "7.0.0",
    "coveralls": "3.0.2",
    "del": "3.0.0",
    "esm": "3.0.82",
    "globby": "8.0.1",
    "jsdoc-to-markdown": "4.0.1",
    "npm-run-all": "4.1.3",
    "nyc": "13.0.1",
    "rollup": "0.65.2",
    "rollup-plugin-babel": "4.0.3",
    "rollup-plugin-cleanup": "3.0.0",
    "rollup-plugin-filesize": "4.0.1",
    "rollup-plugin-uglify": "5.0.2",
    "standard": "12.0.1",
    "tap-spec": "5.0.0",
    "tape": "4.9.1"
  },
  "dependencies": {
    "kyanite": "0.7.0"
  }
}
