-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
73 lines (73 loc) · 1.69 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/roarr/**/*"
],
"nodeArguments": [
"--import=tsimp"
]
},
"browser": "./dist/browser.js",
"dependencies": {
"fast-printf": "^1.6.9",
"safe-stable-stringify": "^2.4.3",
"semver-compare": "^1.0.0"
},
"description": "JSON logger for Node.js and browser.",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@types/node": "^20.8.9",
"@types/semver-compare": "^1.0.2",
"ava": "^6.1.2",
"benchmark": "^2.1.4",
"eslint": "^8.52.0",
"eslint-config-canonical": "^42.3.0",
"husky": "^8.0.3",
"knip": "^2.38.4",
"nyc": "^15.1.0",
"semantic-release": "^22.0.5",
"sinon": "^17.0.0",
"tsimp": "^2.0.11",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.0"
},
"files": [
"src",
"dist"
],
"keywords": [
"log",
"logger",
"json"
],
"license": "BSD-3-Clause",
"main": "./dist/Roarr.js",
"name": "roarr",
"repository": {
"type": "git",
"url": "[email protected]:gajus/roarr.git"
},
"scripts": {
"benchmark": "ROARR_LOG=true tsx test/benchmark.ts",
"build": "rm -fr ./dist && tsc --project tsconfig.build.json",
"dev": "tsc --watch --project tsconfig.build.json",
"lint": "eslint ./src ./test && tsc && knip",
"test": "ava --serial --verbose"
},
"types": "./dist/Roarr.d.ts",
"version": "1.0.0"
}