-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 857 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
{
"name": "node-qrious",
"version": "4.0.0",
"description": "Node.js module for QR code generation via QRious",
"homepage": "https://github.com/neocotic/node-qrious",
"bugs": {
"url": "https://github.com/neocotic/node-qrious/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "[email protected]",
"url": "https://neocotic.com"
},
"license": "GPL-3.0",
"keywords": [
"qr",
"code",
"qrious",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/neocotic/node-qrious.git"
},
"dependencies": {
"canvas": "^1.6.5",
"qrious-core": "^4.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-notninja": "^0.1.1"
},
"main": "index.js",
"scripts": {
"ci": "npm run test",
"test": "eslint \"index.js\" \"src/**/*.js\""
}
}