forked from atomspace/qr-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "qr-extension",
"version": "1.0.0",
"private": true,
"description": "A browser extension to generate a QR-code from the page address",
"main": "index.js",
"scripts": {
"pretest": "neutrino lint",
"start": "neutrino start",
"build": "neutrino build",
"lint": "neutrino lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomspaceodua/qr-extension.git"
},
"keywords": [],
"author": "Atom Space",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/atomspaceodua/qr-extension/issues"
},
"homepage": "https://github.com/atomspaceodua/qr-extension/blob/master/README.md",
"dependencies": {
"jquery": "^3.3.1",
"qr-encode": "0.3.0",
"qrcode": "^1.2.0"
},
"devDependencies": {
"@atomspace/eslint": "~2.1.1",
"@atomspace/webextension": "~0.2.2",
"neutrino": "~8.2.3"
},
"contributors": [
"Constantin Genchevskiy <[email protected]>",
"Maximov Artyom <[email protected]>",
"Michael Chumachenko <[email protected]>"
]
}