-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "@airgateway/api",
"version": "1.0.15",
"description": "Javascript client library for the AirGateway API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AirGateway/airgateway-api-javascript-client"
},
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npx tsc",
"test": "jest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/node": "^22.13.11",
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@types/jest": "^29.5.14",
"axios-mock-adapter": "^2.1.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^3.3.2",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0"
}
}