forked from christophehurpeau/nightingale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.51 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
{
"name": "nightingale-monorepo",
"private": true,
"version": "15.0.0",
"description": "Logger for browser and node, see [nightingale](packages/nightingale) to get started !",
"author": "Christophe Hurpeau <[email protected]> (https://christophe.hurpeau.com)",
"license": "ISC",
"repository": "https://github.com/christophehurpeau/nightingale.git",
"homepage": "https://github.com/christophehurpeau/nightingale",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
"build:definitions": "tsc -b",
"checks": "node scripts/check-packages.js",
"clean:build": "yarn workspaces foreach --parallel -A run clean:build",
"generate:api": "typedoc --tsconfig tsconfig.doc.json",
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=lcov --coverageDirectory=docs/coverage/",
"lint": "yarn run lint:prettier && yarn run lint:eslint",
"lint:eslint": "NODE_OPTIONS=--max_old_space_size=4096 eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet .",
"lint:prettier": "pob-root-prettier --check .",
"lint:prettier:fix": "pob-root-prettier --write .",
"postinstall": "pob-root-postinstall",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=json --coverageReporters=text",
"test:coverage:json": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=json",
"test:coverage:lcov": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=lcov",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"tsc": "tsc -b",
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
},
"commitlint": {
"extends": [
"@pob/commitlint-config"
]
},
"prettier": "@pob/root/prettier-config",
"devDependencies": {
"@babel/core": "7.24.5",
"@pob/commitlint-config": "6.4.0",
"@pob/eslint-config": "56.0.0",
"@pob/eslint-config-typescript": "56.0.0",
"@pob/root": "12.1.1",
"@types/jest": "29.5.12",
"@types/node": "20.14.9",
"check-package-dependencies": "7.1.2",
"eslint": "8.57.0",
"jest": "29.7.0",
"pob-babel": "40.0.0",
"typedoc": "0.26.3",
"typescript": "5.4.5"
}
}