node-qrcode-lite/package.json
Vincenzo Greco 77064f5e5e Refactor/core ()
* Split core lib into multiple files

* Refactor data encoding methods

* Refactor data masking process

* Improve qr code generation process

* Increase minimum required node version to 0.10

* Add linter

* Add tests and tests coverage

* Update travis config to fix compilation issues

* Add examples folder

* Add missing license tag in package.json

* Update build script and add sourcemap support

* Publish only strictly needed files on npm

* Update readme
2016-12-16 23:45:08 +01:00

62 lines
1.2 KiB
JSON

{
"name": "qrcode",
"description": "QRCode / 2d Barcode api with both server side and client side support using canvas",
"version": "0.5.0",
"author": "Ryan Day <soldair@gmail.com>",
"contributors": [
"vigreco"
],
"keywords": [
"canvas",
"qrcode",
"barcode"
],
"main": "./lib/index.js",
"browser": {
"./lib/index.js": "./lib/browser.js",
"./lib/utils/buffer.js": "./lib/utils/typedarray-buffer.js"
},
"files": [
"bin",
"build",
"lib"
],
"homepage": "http://github.com/soldair/node-qrcode",
"license": "MIT",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "node test.js",
"build": "node build.js",
"prepublish": "npm run build"
},
"bin": {
"qrcode": "./bin/qrcode"
},
"dependencies": {
"canvas": "~1.3.4",
"colors": "*"
},
"devDependencies": {
"browserify": "^13.1.1",
"canvasutil": "*",
"express": "2.5.x",
"libxmljs": "^0.18.0",
"standard": "*",
"tap": "*",
"uglify-js": "^2.7.4"
},
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-qrcode.git"
},
"engines": {
"node": ">= 0.10"
},
"standard": {
"ignore": [
"build/",
"examples/vendors/"
]
}
}