credit-card-type
Version:
A library for determining credit card type
41 lines (40 loc) • 1.08 kB
JSON
{
"name": "credit-card-type",
"version": "10.0.0",
"description": "A library for determining credit card type",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext js,ts .",
"posttest": "npm run lint",
"test": "jest",
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration"
},
"repository": {
"type": "git",
"url": "git@github.com:braintree/credit-card-type"
},
"homepage": "https://github.com/braintree/credit-card-type",
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.47.0",
"eslint-config-braintree": "^6.0.0-typescript-prep-rc.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/helper.ts"
]
}
}