-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 972 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
{
"name": "@dot/log",
"version": "0.1.5",
"publishConfig": {
"access": "public"
},
"description": "A beautiful and minimal logger for all applications",
"license": "MPL-2.0",
"repository": "shellscape/dot",
"author": "shellscape",
"homepage": "https://github.com/shellscape/dot",
"bugs": "https://github.com/shellscape/dot/issues",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm -w package:build $PWD",
"coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
"prepare": "if [ ! -d 'dist' ]; then pnpm build; fi",
"prepublishOnly": "pnpm build",
"prerelease": "pnpm build",
"pretest": "pnpm build",
"release": "pnpm --workspace-root package:release $(pwd)",
"test": "FORCE_COLOR=2 ava"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"chalk": "^4.1.2",
"loglevelnext": "^6.0.0",
"p-defer": "^3.0.0"
}
}