-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "airport-data-js",
"version": "1.0.6",
"type": "commonjs",
"description": "A comprehensive library providing easy retrieval of airport data based on IATA, ICAO, city codes, country codes, and continents.",
"main": "dist/airport-data.min.js",
"scripts": {
"test": "jest --config jest.config.cjs",
"build:lib": "webpack --config webpack.node.cjs",
"build:dist": "webpack --config webpack.browser.cjs",
"build": "npm run build:lib && npm run build:dist"
},
"dependencies": {
"jsonpack": "^1.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/aashishvanand/airport-data-js.git"
},
"keywords": [
"airport",
"airports",
"iata",
"icao",
"flight",
"flightradar24",
"flightaware",
"radarbox",
"aviation",
"travel",
"geography",
"codes",
"continent",
"city",
"country",
"aircodes",
"amadeus",
"ISOCountryCodes",
"FAA",
"timezones"
],
"author": "Aashish Vivekanand",
"license": "CC BY 4.0",
"bugs": {
"url": "https://github.com/aashishvanand/airport-data-js/issues"
},
"homepage": "https://airport-data-js.aashishvanand.me/",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"arraybuffer-loader": "^1.0.8",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}