-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.37 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"files": [
"./dist"
],
"bin": {
"roarr": "dist/bin/index.js"
},
"types": "dist/index.d.ts",
"dependencies": {
"chalk": "^4.0.0",
"dot-prop": "^6.0.0",
"es6-error": "^4.1.1",
"liqe": "^3.6.0",
"pretty-ms": "^7.0.0",
"prettyjson": "^1.2.5",
"roarr": "^7.15.0",
"seq-logging": "^2.0.0",
"socket.io-client": "^4.6.1",
"split2": "^4.1.0",
"yargs": "^17.7.1"
},
"description": "A CLI program for processing Roarr logs.",
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@types/split2": "^3.2.1",
"@types/yargs": "^17.0.7",
"eslint": "^8.34.0",
"eslint-config-canonical": "^40.0.7",
"husky": "^7.0.4",
"semantic-release": "^20.1.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.29.1"
},
"engines": {
"node": ">=16"
},
"keywords": [
"log",
"logger",
"json"
],
"name": "@roarr/cli",
"repository": {
"type": "git",
"url": "[email protected]:gajus/roarr-cli.git"
},
"scripts": {
"build": "rm -fr ./dist && tsc",
"dev": "tsc --watch",
"lint": "eslint ./src && tsc --noEmit",
"test": "vitest run"
},
"version": "1.0.0"
}