forked from pokusew/node-pcsclite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.23 KB
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
{
"name": "@nonth/pcsclite",
"version": "0.6.2",
"description": "Bindings over PC/SC to access Smart Cards",
"keywords": [
"nfc",
"pcsc",
"pcsclite",
"smartcards"
],
"homepage": "https://github.com/nonth/node-pcsclite#readme",
"bugs": {
"url": "https://github.com/nonth/node-pcsclite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nonth/node-pcsclite.git"
},
"license": "ISC",
"author": "nonth <nonthz@gmail.com> (https://github.com/nonth)",
"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",
"release": "release-it",
"release:dry": "release-it --dry-run",
"release:ci": "release-it --ci"
},
"dependencies": {
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"mocha": "^10.2.0",
"release-it": "^19.0.5",
"should": "^13.2.3",
"sinon": "^16.0.0"
},
"gypfile": true,
"publishConfig": {
"access": "public"
}
}