forked from soldair/node-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 772 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 772 Bytes
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
{ "name": "qrcode"
,"description": "QRCode / 2d Barcode api with both server side and client side support using canvas"
,"version": "0.2.6"
,"author": "Ryan Day <soldair@gmail.com>"
,"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":"*"
}
,"devDependencies":{
"express":"2.5.x"
,"browserify":"1.9.x"
,"uglify-js":"1.2.x"
,"canvasutil":"*"
,"tap":"*"
}
,"repository":{
"type":"git"
,"url":"git://github.com/soldair/node-qrcode.git"
}
,"engines":{"node":">=0.2.3"}
}