-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "boleto-barcode-svg",
"version": "0.1.0",
"description": "Generate brazilian boleto barcode in SVG",
"author": "Marcos Neves <marcos.neves@gmail.com> (https://github.com/neves)",
"license": "MIT",
"type": "module",
"source": "src/index.js",
"module": "src/index.js",
"main": "dist/boleto-barcode-svg.js",
"unpkg": "dist/boleto-barcode-svg.umd.js",
"scripts": {
"build": "microbundle",
"postbuild": "size-limit",
"dev": "microbundle watch",
"test": "node src/test.js && echo All tests passing!",
"presize": "microbundle",
"size": "size-limit"
},
"keywords": [
"boleto",
"barcode",
"brazil",
"brasil",
"codigo",
"barras"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.5.0",
"microbundle": "^0.12.0",
"size-limit": "^4.5.0"
},
"size-limit": [
{
"path": "dist/boleto-barcode-svg.js",
"limit": "429"
},
{
"path": "dist/boleto-barcode-svg.esm.js",
"limit": "459"
},
{
"path": "dist/boleto-barcode-svg.modern.js",
"limit": "471"
},
{
"path": "dist/boleto-barcode-svg.umd.js",
"limit": "437"
}
]
}