forked from soldair/node-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.47 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "qrcode",
"description": "QRCode / 2d Barcode api with both server side and client side support using canvas",
"version": "1.4.2",
"author": "Ryan Day <[email protected]>",
"contributors": [
"Vincenzo Greco <[email protected]>"
],
"keywords": [
"qr",
"code",
"canvas",
"qrcode"
],
"main": "./lib/index.js",
"browser": {
"./lib/index.js": "./lib/browser.js",
"./lib/utils/buffer.js": "./lib/utils/typedarray-buffer.js",
"fs": false
},
"files": [
"bin",
"build",
"lib",
"helper"
],
"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": {
"dijkstrajs": "^1.0.1",
"isarray": "^2.0.1",
"pngjs": "^3.3.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"browserify": "^16.2.3",
"canvas": "^1.6.11",
"canvasutil": "*",
"colors": "*",
"express": "^4.16.4",
"htmlparser2": "^3.9.2",
"os-tmpdir": "^1.0.2",
"sinon": "^1.17.7",
"standard": "^9.0.2",
"tap": "^12.1.1",
"uglify-js": "^2.7.5"
},
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-qrcode.git"
},
"engines": {
"node": ">=4"
},
"standard": {
"ignore": [
"build/",
"examples/vendors/"
]
}
}