forked from soldair/node-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 878 Bytes
/
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
38
39
40
{
"name": "qrcode",
"description": "QRCode / 2d Barcode api with both server side and client side support using canvas",
"version": "0.2.7",
"author": "Ryan Day <[email protected]>",
"keywords": [
"canvas",
"qrcode",
"barcode"
],
"main": "./qrcode.js",
"homepage": "http://github.com/soldair/node-qrcode",
"scripts": {
"pretest": "node build.js",
"prepublish": "node build.js",
"test": "tap test/url.js"
},
"bin": {
"qrcode": "./bin/qrcode"
},
"dependencies": {
"canvas": ">= 0.4.3 <=1.0.4",
"colors": "*",
"bops": "0.0.6"
},
"devDependencies": {
"express": "2.5.x",
"browserify": "~2.29.0",
"uglify-js": "1.2.x",
"canvasutil": "*",
"tap": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-qrcode.git"
},
"engines": {
"node": ">=0.2.3"
}
}