forked from pokusew/node-pcsclite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
59
60
61
{
"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/jhfrintrop/node-pcsclite#readme",
"bugs": {
"url": "https://github.com/jhfrintrop/node-pcsclite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jhfrintrop/node-pcsclite.git"
},
"license": "ISC",
"author": {
"name": "Santiago Gimeno",
"email": "santiago.gimeno@gmail.com",
"url": "https://github.com/santigimeno"
},
"contributors": [
{
"name": "Martin Endler",
"url": "https://github.com/pokusew"
},
{
"name": "Jan-Hendrik Frintrop",
"url": "https://github.com/jhfrintrop"
}
],
"main": "lib/pcsclite.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm-run-all --sequential prebuild:node prebuild:electron prebuild:move",
"prebuild:node": "prebuild --strip --runtime node -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0",
"prebuild:electron": "prebuild --strip --runtime electron -t 2.0.0 -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0",
"prebuild:move": "cpy prebuilds/@pokusew/*.tar.gz prebuilds/",
"install": "prebuild-install || node-gyp rebuild",
"test": "mocha --exit"
},
"dependencies": {
"nan": "^2.14.0",
"prebuild-install": "^7.0.1"
},
"devDependencies": {
"cpy-cli": "^3.1.1",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"prebuild": "^11.0.3",
"should": "^13.2.3",
"sinon": "^9.0.0"
},
"gypfile": true
}