fixed parse readers string function

added .editorconfig
formatted code
updated dependencies
improved package.json
fixed version number
This commit is contained in:
Martin Endler
2016-08-10 20:39:11 +02:00
parent f65937eb9c
commit c3c3cf33ef
17 changed files with 414 additions and 266 deletions

View File

@@ -1,34 +1,39 @@
{
"name": "pcsclite",
"version": "0.4.91",
"description": "Bindings over PC/SC to access Smart Cards",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.2.0",
"nan": "^2.3.5"
},
"devDependencies": {
"mocha": "~1.11.0",
"sinon": "~1.3.4",
"should": "~1.2.2"
},
"scripts": {
"test": "mocha",
"install": "node-gyp rebuild"
},
"repository": "https://github.com/santigimeno/node-pcsclite.git",
"keywords": [
"pcsc",
"pcsclite",
"smartcards"
],
"author": "Santiago Gimeno <santiago.gimeno@gmail.com>",
"license": {
"type": "ISC",
"url": "https://github.com/santigimeno/node-pcsclite/blob/master/LICENSE"
},
"gypfile": true
"name": "@pokusew/pcsclite",
"version": "0.4.11",
"description": "Bindings over PC/SC to access Smart Cards",
"keywords": [
"pcsc",
"pcsclite",
"nfc",
"smartcards"
],
"homepage": "https://github.com/pokusew/node-pcsclite#readme",
"bugs": {
"url": "https://github.com/pokusew/node-pcsclite/issues"
},
"license": "ISC",
"author": "Santiago Gimeno <santiago.gimeno@gmail.com>",
"main": "lib/pcsclite.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/pokusew/node-pcsclite.git"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "mocha"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.4.0"
},
"devDependencies": {
"mocha": "^3.0.2",
"should": "^11.0.0",
"sinon": "^1.17.5"
},
"gypfile": true
}