-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 827 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
41
42
43
44
45
46
{
"name": "swish-qr-cli",
"version": "1.0.1",
"description": "Generate a Swish QR code",
"license": "MIT",
"repository": "gillstrom/swish-qr-cli",
"author": {
"name": "Andreas Gillström",
"email": "andreasgillstrom@gmail.com",
"url": "github.com/gillstrom"
},
"bin": {
"swish-qr": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"base64",
"cli-app",
"cli",
"generate",
"swish",
"qr"
],
"dependencies": {
"inquirer": "^3.1.1",
"meow": "^3.7.0",
"qrcode-terminal": "^0.11.0",
"swish-qr": "^1.2.0",
"term-img": "^1.0.0"
},
"devDependencies": {
"ava": "*",
"dargs": "^5.1.0",
"execa": "^0.7.0",
"is-png": "^1.1.0",
"xo": "*"
}
}