-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "credit-card-reader",
"version": "0.0.1",
"description": "Easy reading on credit cards over PC/SC or NFC with Node.js",
"author": "Gueorgui AGAPOV",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/7s4r/credit-card-reader.git"
},
"bugs": {
"url": "https://github.com/7s4r/credit-card-reader/issues"
},
"homepage": "https://github.com/7s4r/credit-card-reader#readme",
"keywords": [
"smartcard",
"creditcard",
"pcsc",
"emv",
"apdu",
"aid",
"atr",
"nfc",
"chip",
"iso7816"
],
"type": "module",
"engines": {
"node": ">=12.0.0"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint src"
},
"dependencies": {
"chalk": "^4.1.2",
"credit-card-type": "^9.1.0",
"dotenv": "^8.6.0",
"fast-luhn": "^2.0.0",
"hackrf.js": "^1.0.0-rc1",
"nfc-pcsc": "^0.8.1",
"node-fetch": "^2.6.7",
"node-tlv": "^1.5.14",
"pcsclite": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0"
}
}