-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "@run-z/log-z",
"version": "3.0.0",
"description": "Log that in browser or Node.js",
"keywords": [
"log",
"logger",
"logging"
],
"homepage": "https://github.com/run-z/log-z",
"repository": {
"type": "git",
"url": "ssh://git@github.com:run-z/log-z.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/run-z/log-z/issues"
},
"type": "module",
"types": "./dist/log-z.d.ts",
"typesVersions": {
"*": {
"node.js": [
"./dist/log-z.node.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/log-z.d.ts",
"default": "./dist/log-z.js"
},
"./node.js": {
"types": "./dist/log-z.node.d.ts",
"default": "./dist/log-z.node.js"
}
},
"sideEffects": false,
"dependencies": {
"@proc7ts/async": "^2.1.0",
"@proc7ts/logger": "^2.0.0",
"@proc7ts/primitives": "^4.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@run-z/eslint-config": "^5.0.0",
"@run-z/prettier-config": "^3.0.0",
"@run-z/project-config": "^0.20.4",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/node": "^20.16.11",
"eslint": "^9.12.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"run-z": "2.1.0-bootstrap",
"strip-ansi": "^7.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typedoc": "^0.26.8",
"typescript": "~5.6.3"
},
"scripts": {
"all": "run-z build,lint,test",
"bootstrap": "build-z",
"build": "run-z +z bootstrap",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
"format": "run-z +z --then prettier --write \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint,+cmd:test-z"
}
}