-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 1.08 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
{
"name": "@gadgetinc/opentelemetry-instrumentations",
"version": "0.1.0",
"main": "index.js",
"author": "Gadget Authors",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:prettier": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --check \"packages/**/*.{js,ts,tsx}\"",
"lint:eslint": "NODE_OPTIONS=\"--max-old-space-size=4096\" eslint --quiet --ext ts,tsx packages",
"lint:fix": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --write --check \"packages/**/*.{js,ts,tsx}\" && eslint --ext ts,tsx --fix packages",
"typecheck": "pnpm run -r tsc --noEmit",
"build": "pnpm run -r build",
"test": "NODE_OPTIONS=\"--max-old-space-size=4096 --stack-trace-limit=1000\" jest"
},
"devDependencies": {
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "0.4.0",
"eslint": "^7.32.0",
"gitpkg": "^1.0.0-beta.2",
"jest": "^29.7.0",
"jest-junit": "^12.0.0",
"prettier": "^2.8.1",
"typescript": "^5.2.2"
}
}