-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.51 KB
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
{
"name": "elastic-otel-node",
"version": "0.1.0",
"description": "a monorepo for Elastic Node.js things for OpenTelemetry, you probably want ./packages/opentelemetry-node",
"license": "Apache-2.0",
"private": true,
"// lint": "'lint' at the top-level attempts to (a) eslint all, (b) run other lint steps in each pkgs, (c) prettier all",
"scripts": {
"clean-all": "set -e; ./scripts/oneach.sh npm run --if-present clean",
"ci-all": "./scripts/oneach.sh npm ci",
"compile-all": "./scripts/oneach.sh npm run --if-present compile",
"clean": "rm -rf node_modules build",
"oneach": "./scripts/oneach.sh",
"lint": "npm run lint:eslint && ./scripts/oneach.sh npm run --if-present lint:except-eslint-and-prettier && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:fix": "eslint . --fix && prettier --write ."
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "^8.57.1",
"dependency-check": "^4.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-yet-another-license-header": "^0.2.0",
"globals": "^17.4.0",
"json": "^11.0.0",
"minimatch": "^9.0.9",
"mkdirp": "^3.0.1",
"prettier": "^3.8.1",
"semver": "^7.7.4",
"typescript": "5.0.4",
"typescript-eslint": "^8.57.1"
}
}