-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "qr-filetransfer",
"version": "2.0.2",
"description": "Transfer files over wifi or internet from your computer to your mobile device by scanning a QR code without leaving the terminal.",
"main": "index.js",
"scripts": {
"start": "./lib/index.js",
"test": "NODE_ENV=test mocha test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svenkatreddy/qr-filetransfer.git"
},
"bin": {
"qr-filetransfer": "./lib/index.js",
"qrf": "./lib/index.js"
},
"keywords": [
"file",
"transfer",
"qr",
"code",
"easy",
"zip",
"files",
"multiple"
],
"author": "Venkat Reddy",
"license": "ISC",
"bugs": {
"url": "https://github.com/svenkatreddy/qr-filetransfer/issues"
},
"homepage": "https://github.com/svenkatreddy/qr-filetransfer#readme",
"dependencies": {
"debug": "^3.1.0",
"express": "^4.16.3",
"express-easy-zip": "^1.1.4",
"localtunnel": "^2.0.1",
"minimist": "^1.2.0",
"network": "^0.4.1",
"path": "^0.12.7",
"qrcode-terminal": "^0.12.0",
"util-promisify": "^2.1.0"
},
"devDependencies": {
"mocha": "^5.0.5",
"sinon": "^4.4.9",
"ultimate-chai": "^4.1.1"
}
}