-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 910 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": "text-to-unicode-qr",
"version": "1.0.0",
"description": "convert text (BTC address) to QR codes made of unicode i.e. to send via text based emails",
"main": "index.js",
"engines": {
"node": "8.4.0"
},
"scripts": {
"lint:js": "eslint .",
"test:unit": "mocha ./tests --ui bdd --reporter nyan",
"test:unit:watch": "npm run test:unit -- --watch",
"start": "node ./index.js",
"cli": "node ./cli.js",
"test": "npm run test"
},
"keywords": [
"qr",
"unicode",
"cli",
"express",
"api"
],
"author": "pep0ni",
"license": "GPL-3.0",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.2",
"mocha": "^5.0.2"
},
"dependencies": {
"express": "^4.16.2",
"qrcode-terminal": "^0.11.0",
"yargs": "^10.0.3"
},
"repository": {
"type": "git",
"url": "/~https://github.com/peponi/text-to-unicode-qr"
}
}