forked from elastic/ebt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.4 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
41
42
43
44
45
{
"name": "@elastic/ebt",
"version": "1.3.1",
"description": "Event-based telemetry for Elastic products",
"repository": "git@github.com:elastic/ebt.git",
"license": "SSPL-1.0 OR Elastic License 2.0",
"main": "index.js",
"packageManager": "yarn@1.22.22",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean && rimraf client shippers",
"lint": "prettier **.{js,ts}",
"test:unit": "jest",
"prepare": "yarn clean && yarn lint -c && yarn test:unit && yarn build",
"preversion": "yarn",
"version": "git checkout -b $(node scripts/get_package_version) && git add .",
"postversion": "git push --set-upstream origin $(node scripts/get_package_version) && git push upstream --tags",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/runtime": "^7.27.6",
"fp-ts": "^2.16.10",
"io-ts": "^2.2.22",
"js-sha256": "^0.11.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"moment": "^2.30.1",
"node-fetch": "^2.6.7",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@fullstory/snippet": "^2.0.5",
"@types/jest": "^30.0.0",
"@types/lodash.get": "^4.4.9",
"@types/lodash.has": "^4.5.9",
"@types/node-fetch": "2.6.12",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}