-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (41 loc) · 927 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
{
"name": "qrim",
"version": "1.0.1",
"description": "Stylized JavaScript QR Code image generator with UTF8 support.",
"module": "src/index.js",
"main": "build/qrim.module.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"build/*",
"src/*"
],
"keywords": [
"javascript",
"qrcode",
"qr",
"image",
"es",
"module",
"style",
"maker",
"qrimage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevinz/qrim.git"
},
"author": "Stephens Nunnally <stephens@scidian.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevinz/qrim/issues"
},
"homepage": "https://github.com/stevinz/qrim",
"devDependencies": {
"rollup": "^2.58.0"
},
"private": false
}