-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.3 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
{
"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,
"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 && ls -d packages/* | while read d; do (cd $d; npm run lint); done",
"lint:eslint": "eslint --ext=js,mjs,cjs scripts examples # requires node >=16.0.0",
"lint:fix": "eslint --ext=js,mjs,cjs .eslintrc.js scripts examples --fix && ls -d packages/* | while read d; do (cd $d; npm run lint:fix); done"
},
"devDependencies": {
"@types/node": "^22.10.2",
"dependency-check": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"glob": "^10.4.5",
"json": "^11.0.0",
"minimatch": "^9.0.5",
"semver": "^7.6.3",
"typescript": "^4.4.4"
}
}