-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@juit/qrcode",
"version": "1.0.29",
"description": "A modern QR code generator for JavaScript",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "plug",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile"
},
"author": "Juit Developers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@plugjs/build": "^0.6.24",
"@types/pdfkit": "^0.13.8",
"fast-png": "^6.2.0",
"pdfkit": "^0.16.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/juitnow/juit-qrcode.git"
},
"keywords": [
"qrcode",
"qr code",
"qr",
"png",
"svg",
"pdf",
"image"
],
"bugs": {
"url": "https://github.com/juitnow/juit-qrcode/issues"
},
"homepage": "https://github.com/juitnow/juit-qrcode#readme",
"files": [
"*.md",
"dist/",
"src/"
]
}