-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
{
"name": "@leothorp/loggle",
"version": "0.0.40",
"description": "Easy-to-use and configurable logging library for the browser.",
"type": "module",
"scripts": {
"test": "node tests/run.js",
"build": "npm run test && webpack --config webpack.config.cjs && gzip -9k dist/bundle.js",
"check-size": "npm run build && stat -f '%z' dist/bundle.js.gz && rm dist/bundle.js.gz",
"build-pub": " npm run check-size && npm-pub 'release'"
},
"engines": {
"node": "^14 || ^16 || >=18"
},
"exports": {
".": {
"browser": "./index.browser.js",
"default": "./index.js"
}
},
"browser": {
"./index.js": "./index.browser.js"
},
"keywords": [
"logging",
"frontend logs",
"log levels",
"log sink"
],
"files": [
"src/*",
"index.browser.js",
"index.js",
"README.md"
],
"author": "leothorp",
"repo": "https://github.com/leothorp/loggle",
"license": "MIT",
"devDependencies": {
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}