-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.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
{
"name": "@log-rush/log-formatter",
"version": "1.1.1",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"author": "fabiankachlock <fabian.kachlock@icloud.com>",
"license": "CC-BY-NC-4.0",
"files": [
"dist/**"
],
"description": "Parse/Format/Style colored logs",
"keywords": [
"logs",
"logging",
"color",
"styled",
"sgr",
"terminal",
"parsing"
],
"scripts": {
"build": "yarn zx ./scripts/build.mjs",
"build:browser": "tsc -p ./tsconfig.browser.json",
"build:node": "tsc -p ./tsconfig.node.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write './src/**/*.ts'",
"format:ci": "prettier --check './src/**/*.ts'",
"release": "yarn zx ./scripts/release.mjs"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2",
"zx": "^6.1.0"
}
}