77 lines
2.6 KiB
JSON
77 lines
2.6 KiB
JSON
{
|
|
"name": "@elastic/transport",
|
|
"version": "8.4.1",
|
|
"description": "Transport classes and utilities shared among Node.js Elastic client libraries",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run build && npm run lint && tap test/{unit,acceptance}/{*,**/*}.test.ts",
|
|
"test:unit": "npm run build && tap test/unit/{*,**/*}.test.ts",
|
|
"test:acceptance": "npm run build && tap test/acceptance/*.test.ts",
|
|
"test:coverage-100": "npm run build && tap test/{unit,acceptance}/{*,**/*}.test.ts --coverage --100",
|
|
"test:coverage-report": "npm run build && tap test/{unit,acceptance}/{*,**/*}.test.ts --coverage && nyc report --reporter=text-lcov > coverage.lcov",
|
|
"test:coverage-ui": "npm run build && tap test/{unit,acceptance}/{*,**/*}.test.ts --coverage --coverage-report=html",
|
|
"lint": "ts-standard src",
|
|
"lint:fix": "ts-standard --fix src",
|
|
"license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause;0BSD'",
|
|
"prebuild": "npm run clean-build && npm run lint",
|
|
"build": "tsc",
|
|
"clean-build": "rimraf ./lib && mkdir lib",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/elastic/elastic-transport-js.git"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Elastic Client Library Maintainers",
|
|
"company": "Elastic BV"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/elastic/elastic-transport-js/issues"
|
|
},
|
|
"homepage": "https://github.com/elastic/elastic-transport-js#readme",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"devDependencies": {
|
|
"@sinonjs/fake-timers": "github:sinonjs/fake-timers#0bfffc1",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/ms": "^0.7.31",
|
|
"@types/node": "^17.0.31",
|
|
"@types/sinonjs__fake-timers": "^8.1.2",
|
|
"@types/stoppable": "^1.1.1",
|
|
"@types/tap": "^15.0.7",
|
|
"@types/ungap__structured-clone": "^0.3.3",
|
|
"@ungap/structured-clone": "^1.2.0",
|
|
"into-stream": "^6.0.0",
|
|
"license-checker": "^25.0.1",
|
|
"node-abort-controller": "^3.0.1",
|
|
"proxy": "^1.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"stoppable": "^1.1.0",
|
|
"tap": "^16.1.0",
|
|
"ts-node": "^10.7.0",
|
|
"ts-standard": "^11.0.0",
|
|
"typescript": "^4.6.4",
|
|
"workq": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"hpagent": "^1.0.0",
|
|
"ms": "^2.1.3",
|
|
"secure-json-parse": "^2.4.0",
|
|
"tslib": "^2.4.0",
|
|
"undici": "^5.22.1"
|
|
},
|
|
"tap": {
|
|
"ts": true,
|
|
"jsx": false,
|
|
"flow": false,
|
|
"coverage": false,
|
|
"check-coverage": false
|
|
}
|
|
}
|