-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
32 lines (32 loc) · 1004 Bytes
/
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
{
"name": "@logtail/logger",
"license": "ISC",
"author": "Better Stack <hello@betterstack.com>",
"homepage": "https://github.com/logtail/logtail-js",
"private": true,
"scripts": {
"bootstrap-example": "rm -rf example-project/node_modules/@logtail && ln -s ../../packages example-project/node_modules/@logtail",
"build": "lerna run build",
"lint": "prettier -c \"packages/**\" \"example-project/**\"",
"lint:save": "prettier --write \"packages/**\" \"example-project/**\"",
"test": "jest"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@edge-runtime/jest-environment": "^2.3.10",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}