UNPKG

@dgac/nmb2b-client

Version:

EUROCONTROL Network Manager B2B SOAP client

124 lines 3.38 kB
{ "name": "@dgac/nmb2b-client", "version": "1.4.0", "description": "EUROCONTROL Network Manager B2B SOAP client", "keywords": [ "EUROCONTROL", "SOAP", "TypeScript" ], "author": "Benjamin BERET <benjamin.beret@aviation-civile.gouv.fr>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/DGAC/nmb2b-client-js.git" }, "engines": { "node": ">=18" }, "type": "module", "main": "dist/index.cjs", "types": "dist/index.d.ts", "module": "dist/index.js", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./package.json": "./package.json", "./security": { "import": "./dist/security.js", "require": "./dist/security.cjs" }, "./config": { "import": "./dist/config.js", "require": "./dist/config.cjs" }, "./Airspace": { "import": "./dist/Airspace/index.js", "require": "./dist/Airspace/index.cjs" }, "./Airspace/types": { "import": "./dist/Airspace/types.js", "require": "./dist/Airspace/types.cjs" }, "./Flight": { "import": "./dist/Flight/index.js", "require": "./dist/Flight/index.cjs" }, "./Flight/types": { "import": "./dist/Flight/types.js", "require": "./dist/Flight/types.cjs" }, "./Flow": { "import": "./dist/Flow/index.js", "require": "./dist/Flow/index.cjs" }, "./Flow/types": { "import": "./dist/Flow/types.js", "require": "./dist/Flow/types.cjs" }, "./GeneralInformation": { "import": "./dist/GeneralInformation/index.js", "require": "./dist/GeneralInformation/index.cjs" }, "./GeneralInformation/types": { "import": "./dist/GeneralInformation/types.js", "require": "./dist/GeneralInformation/types.cjs" }, "./utils": { "import": "./dist/utils/index.js", "require": "./dist/utils/index.cjs" } }, "files": [ "dist" ], "devDependencies": { "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.11", "@eslint/js": "^9.17.0", "@total-typescript/shoehorn": "^0.1.2", "@types/debug": "^4.1.12", "@types/invariant": "^2.2.37", "@types/node": "^18.19.68", "@types/proper-lockfile": "^4.1.4", "@vitest/coverage-v8": "^2.1.8", "dotenv": "^16.4.7", "eslint": "^9.17.0", "nock": "^13.5.6", "prettier": "^3.4.2", "rimraf": "^5.0.10", "tsup": "^8.3.5", "tsx": "^4.19.2", "typescript": "^5.7.2", "typescript-eslint": "^8.18.1", "vitest": "^2.1.8" }, "dependencies": { "@date-fns/utc": "^2.1.0", "axios": "^1.7.9", "date-fns": "^4.1.0", "debug": "^4.4.0", "invariant": "^2.2.4", "proper-lockfile": "^4.1.2", "remeda": "^2.18.0", "soap": "^1.1.7", "tar": "^7.4.3", "type-fest": "^4.30.2" }, "publishConfig": { "provenance": true }, "scripts": { "preinstall": "npx only-allow pnpm", "downloadWSDL": "tsx ./scripts/downloadWSDL.mts", "clean": "rimraf dist", "build": "tsup-node", "release": "pnpm build && changeset publish", "lint": "eslint --max-warnings=0", "test": "vitest", "test:ci": "vitest --watch=false --reporter=basic --reporter=junit --outputFile.junit=junit.xml --coverage.enabled --typecheck", "typecheck": "tsc --noEmit" } }