forked from tomkp/smartcard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 998 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 998 Bytes
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
{
"name": "smartcard",
"version": "1.0.29",
"author": "tomkp <tom@tomkp.com>",
"description": "PCSC smartcard reader library for nodejs",
"keywords": [
"pcsc",
"smartcard",
"smart-card",
"iso7816",
"iso-7816",
"emv",
"es6"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QueenCityCodeFactory/smartcard.git"
},
"bugs": {
"url": "https://github.com/QueenCityCodeFactory/smartcard/issues"
},
"homepage": "https://github.com/QueenCityCodeFactory/smartcard",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"compile:watch": "babel -w -d lib/ src/",
"release:patch": "npm run compile && npm version patch && git push && npm publish"
},
"dependencies": {
"@pokusew/pcsclite": "git+https://github.com/QueenCityCodeFactory/node-pcsclite.git#node_12_changes",
"hexify": "^1.0.1"
},
"devDependencies": {
"babel-cli": "*",
"babel-preset-env": "*"
}
}