emv
Version:
EMV / Chip and PIN CLI and library for PC/SC card readers
80 lines (79 loc) • 2.22 kB
JSON
{
"name": "emv",
"version": "2.0.4",
"type": "module",
"description": "EMV / Chip and PIN CLI and library for PC/SC card readers",
"bin": {
"emv": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node --test dist/*.test.js",
"test:coverage": "node --test --experimental-test-coverage dist/*.test.js",
"checks": "npm run typecheck && npm run lint && npm run format && npm run test",
"pretest": "npm run build",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test"
},
"author": "tomkp <tom@tomkp.com>",
"keywords": [
"pcsc",
"smartcard",
"smart-card",
"iso7816",
"iso-7816",
"chip-and-pin",
"emv",
"cli",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomkp/emv.git"
},
"bugs": {
"url": "https://github.com/tomkp/emv/issues"
},
"homepage": "https://github.com/tomkp/emv",
"dependencies": {
"@tomkp/ber-tlv": "^1.0.1",
"ink": "^6.6.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.3",
"smartcard": "^3.7.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"eslint": "^9.17.0",
"globals": "^17.0.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.0",
"typescript-eslint": "^8.52.0"
}
}