forked from DGAC/nmb2b-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@dgac/nmb2b-client",
"version": "3.0.0",
"description": "EUROCONTROL Network Manager B2B SOAP client",
"keywords": [
"EUROCONTROL",
"SOAP",
"TypeScript"
],
"license": "MIT",
"author": "Benjamin BERET <benjamin.beret@aviation-civile.gouv.fr>",
"repository": {
"type": "git",
"url": "git+https://github.com/DGAC/nmb2b-client-js.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"module-sync": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./security": {
"import": "./dist/security.mjs",
"module-sync": "./dist/security.mjs",
"types": "./dist/security.d.mts"
},
"./config": {
"import": "./dist/config.mjs",
"module-sync": "./dist/config.mjs",
"types": "./dist/config.d.mts"
},
"./types": {
"import": "./dist/types.mjs",
"module-sync": "./dist/types.mjs",
"types": "./dist/types.d.mts"
},
"./utils": {
"import": "./dist/utils/index.mjs",
"module-sync": "./dist/utils/index.mjs",
"types": "./dist/utils/index.d.mts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsdown",
"clean": "node -e \"require('fs').rmSync('./dist', { recursive: true, force: true })\"",
"downloadWSDL": "node ./scripts/downloadWSDL.ts",
"format:ci": "oxfmt --check .",
"lint": "oxlint --type-aware --report-unused-disable-directives",
"lint:ci": "oxlint --type-aware --report-unused-disable-directives --format=github",
"prepack": "pnpm build",
"release": "pnpm build && changeset publish",
"test": "vitest",
"test:ci": "vitest --watch=false --reporter=default --reporter=junit --outputFile.junit=junit.xml --coverage.enabled --typecheck",
"test:e2e": "vitest --project=e2e",
"test:unit": "vitest --project=unit",
"typecheck": "tsc --noEmit",
"update-fixtures": "node ./scripts/update-fixtures.ts"
},
"dependencies": {
"@date-fns/utc": "^2.1.1",
"axios": "^1.18.1",
"date-fns": "^4.4.0",
"debug": "^4.4.3",
"proper-lockfile": "^4.1.2",
"remeda": "^2.39.0",
"soap": "^1.10.0",
"tar": "^7.5.21"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@total-typescript/shoehorn": "^0.1.2",
"@types/debug": "^4.1.13",
"@types/node": "^22.20.1",
"@types/proper-lockfile": "^4.1.4",
"@vitest/coverage-v8": "^4.1.10",
"dotenv": "^17.4.2",
"msw": "^2.15.0",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"oxlint-config-presets": "^0.1.16",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.13",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065"
}