-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
73 lines (73 loc) · 1.91 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ulog",
"version": "2.0.0-beta.19",
"description": "The universal logger",
"main": "./ulog.js",
"unpkg": "ulog.min.js",
"author": "Stijn de Witt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/download/ulog.git"
},
"files": [
"core",
"mods",
"base.js",
"build.js",
"full.bundle.js",
"full.min.js",
"ulog.bundle.js",
"ulog.js",
"ulog.lazy.min.js",
"ulog.min.js",
"screenshot.jpg",
"screenshot-beta.11.jpg",
"ulog.png",
"webpack.config.js"
],
"browser": {
"./mods/align/utils.js": "./mods/align/utils.browser.js",
"./mods/colors/utils.js": "./mods/colors/utils.browser.js",
"./mods/config/args.js": "./mods/config/args.browser.js",
"./mods/config/env.js": "./mods/config/env.browser.js",
"./mods/config/read.js": "./mods/config/read.browser.js",
"./mods/config/watch.js": "./mods/config/watch.browser.js",
"./mods/levels/default.js": "./mods/levels/default.browser.js",
"./mods/formats/aligned.js": "./mods/formats/aligned.browser.js",
"./mods/formats/default.js": "./mods/formats/default.browser.js"
},
"keywords": [
"ulog",
"log",
"logging",
"console",
"debug",
"loglevel",
"anylogger"
],
"scripts": {
"build": "webpack --mode production && node ./build.js",
"clean": "rimraf ulog.min.js ulog.lazy.min.js full.min.js",
"test": "nyc tape test.js 2>&1 | tap-nirvana",
"prepare": "npm run test -S && npm run clean -S && npm run build -S"
},
"dependencies": {
"anylogger": "^1.0.11",
"kurly": "^2.0.0-beta.3"
},
"devDependencies": {
"gzip-size": "^6.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"tap-nirvana": "^1.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.3.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"peerDependencies": {
"anylogger": "^1.0.10"
}
}