forked from khkmzynv/node-pcsclite
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
58 lines (58 loc) · 1.17 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
53
54
55
56
57
58
{
"name": "@pokusew/pcsclite",
"version": "0.6.0",
"description": "Bindings over PC/SC to access Smart Cards",
"keywords": [
"nfc",
"pcsc",
"pcsclite",
"smartcards"
],
"homepage": "https://github.com/pokusew/node-pcsclite#readme",
"bugs": {
"url": "https://github.com/pokusew/node-pcsclite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pokusew/node-pcsclite.git"
},
"license": "ISC",
"author": {
"name": "Santiago Gimeno",
"email": "[email protected]",
"url": "https://github.com/santigimeno"
},
"contributors": [
{
"name": "Martin Endler",
"url": "https://github.com/pokusew"
}
],
"main": "lib/pcsclite.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"files": [
"lib/pcsclite.js",
"src/*.h",
"src/*.cpp",
"examples/*.js",
"test/*.js",
"binding.gyp",
"index.d.ts"
],
"scripts": {
"install": "node-gyp rebuild",
"test": "mocha --exit"
},
"dependencies": {
"nan": "^2.18.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "^13.2.3",
"sinon": "^16.0.0"
},
"gypfile": true
}