-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 1.96 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@smpx/oak",
"version": "1.3.4",
"description": "A simple logger that writes to json file, console, or both",
"main": "dist/index.js",
"scripts": {
"build": "babel-changed --source-maps false",
"lint": "eslint src test",
"test": "c8 --reporter=html --reporter=text mocha -r @babel/register",
"test-only": "mocha -r @babel/register",
"compile": "tsc",
"prepublish": "yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprix/oak.git"
},
"bin": {
"oak-viewer": "dist/bin/oakViewer.js"
},
"types": "index.d.ts",
"keywords": [
"oak",
"logger",
"logs",
"jsonlog",
"json",
"pretty"
],
"author": "Rohit Gohri",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprix/oak/issues"
},
"homepage": "https://github.com/smartprix/oak#readme",
"dependencies": {
"@smpx/tail": "^0.1.0",
"@types/node": "^20.11.28",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"lodash": "^4.17.21",
"rotating-file-stream": "^3.2.1",
"sm-utils": "^2.21.2"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.24.0",
"@babel/register": "^7.23.7",
"@smpx/babel-changed": "^0.6.1",
"c8": "^9.1.0",
"chai": "^4.4.1",
"mocha": "^10.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs",
"shippedProposals": true
}
]
],
"plugins": [
[
"@babel/plugin-transform-class-properties",
{
"loose": true
}
]
],
"sourceMaps": true
},
"eslintIgnore": [
"coverage",
"dist"
],
"eslintConfig": {
"extends": "smartprix",
"env": {
"node": true,
"browser": false
}
}
}