-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.01 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": "node-quirc",
"version": "2.3.0",
"description": "quirc for nodejs (QR decoder)",
"main": "index.js",
"scripts": {
"test": "node-gyp configure build && ./node_modules/.bin/mocha --reporter spec --ui bdd",
"prepare": "rm -r build || (exit 0)"
},
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "https://github.com/kAworu/node-quirc"
},
"bugs": {
"url": "https://github.com/kAworu/node-quirc/issues"
},
"keywords": [
"QR",
"QR code",
"qrcode",
"barcode",
"2D code",
"decoder",
"scan",
"scanner"
],
"author": "Alexandre Perrin <alex@kaworu.ch>",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jpeg-js": "^0.4.2",
"mocha": "^11.0.1"
},
"contributors": [
"Alexandre Perrin <alex@kaworu.ch> (https://github.com/kAworu)",
"Daniel Beer <dlbeer@gmail.com> (https://github.com/dlbeer)"
]
}