-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "node-nfc-reader",
"version": "0.0.2",
"description": "Driver package for ACR nfc readers.",
"main": ".src/index.js",
"types": ".src/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "./node_modules/.bin/mocha ./src/**/*.test.js",
"test-watch": "./node_modules/.bin/mocha ./src/**/*.test.js --growl --watch",
"build": "tsc ./src/index.ts --declaration src/index.ts",
"build-watch": "tsc -w ./src/index.ts",
"listener": "tsc ./src/tools/listener.ts && node ./src/tools/listener.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtaconSolutions/node-nfc-reader.git"
},
"author": "Protacon",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProtaconSolutions/node-nfc-reader/issues"
},
"dependencies": {
"commander": "2.9.0",
"pcsclite": "0.5.0",
"rxjs": "5.2.1-smooth"
},
"devDependencies": {
"@types/core-js": "0.9.36",
"@types/mocha": "2.2.39",
"@types/node": "7.0.6",
"chai": "3.5.0",
"mocha": "3.2.0"
},
"homepage": "https://github.com/ProtaconSolutions/node-nfc-reader#readme"
}