{
  "name": "luhn",
  "license": "MIT",
  "version": "2.4.1",
  "author": "James Eggers <james.r.eggers@gmail.com> (http://www.jamesreggers.com/)",
  "description": "A validation module for browsers and Node.js to validate credit card numbers against the luhn algorithm.",
  "homepage": "https://github.com/JamesEggers1/node-luhn",
  "repository": {
    "type": "git",
    "url": "git://github.com/JamesEggers1/node-luhn.git"
  },
  "main": "./src/luhn",
  "types": "./src/luhn.d.ts",
  "browser": "./src/luhn-min.js",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "test": "mocha tests/luhn-tests.js -R spec"
  },
  "keywords": [
    "credit-card",
    "validation",
    "browserify",
    "luhn"
  ],
  "bugs": {
    "url": "https://github.com/JamesEggers1/node-luhn/issues"
  },
  "devDependencies": {
    "mocha": "^2.1.0",
    "should": "^5.0.1"
  }
}
