-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
126 lines (126 loc) · 3.5 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@dgac/nmb2b-client",
"version": "1.4.0",
"description": "EUROCONTROL Network Manager B2B SOAP client",
"keywords": [
"EUROCONTROL",
"SOAP",
"TypeScript"
],
"author": "Benjamin BERET <[email protected]>",
"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"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepack": "pnpm build",
"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"
},
"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
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}