forked from hrz-unimr/node-qrc
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"name": "qrcodeine",
"version": "2.0.2",
"description": "QR Code generator using libqrencode",
"main": "index.js",
"scripts": {
"test": "node-gyp configure build && ./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha",
"test-ci": "node-gyp configure build &&./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly",
"prepare": "rm -r build || (exit 0)"
},
"engines": {
"node": ">= 0.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/netoxygen/node-qrcodeine.git"
},
"bugs": {
"url": "https://github.com/netoxygen/node-qrcodeine/issues"
},
"keywords": [
"QR",
"QR code",
"qrcode",
"barcode",
"2D code",
"libqrencode",
"qrencode"
],
"author": "Net Oxygen Sàrl <info@netoxygen.ch> (https://netoxygen.ch)",
"license": "LGPL-2.1",
"gypfile": true,
"dependencies": {
"bindings": "~1.2.1",
"nan": "^2.6.2"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "3.4.2"
},
"contributors": [
"Tobias Muellerleile <muellerleile@hrz.uni-marburg.de> (https://github.com/tmuellerleile)",
"Alexandre Perrin <alexandre.perrin@netoxygen.ch> (https://github.com/kAworu)",
"Robin Hahling <robin.hahling@gw-computing.net> (https://github.com/Rolinh)"
]
}