-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "@isplasher/isomorphic-logger",
"version": "0.1.4",
"author": "iSplasher <[email protected]>",
"description": "Isomorphic logger",
"type": "module",
"keywords": [
"logger",
"node",
"clent",
"web",
"isomorphic",
"universal",
"rolling",
"react",
"native",
"file",
"debug"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iSplasher/isomorphic-logger.git"
},
"bugs": {
"url": "https://github.com/iSplasher/isomorphic-logger/issues"
},
"homepage": "https://github.com/iSplasher/isomorphic-logger",
"main": "dist/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development tsup --watch",
"esm": "tsc",
"build": "cross-env NODE_ENV=production tsup && yarn esm || true",
"test": "jest --colors"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.2.4",
"typescript": "^5.2.2"
},
"dependencies": {
"moment": "^2.29.4",
"object-inspect": "^1.12.3",
"safe-json-stringify": "^1.2.0",
"stacktrace-js": "^2.0.2"
},
"packageManager": "[email protected]"
}