aewx-metar-parser
Version:
Parse METAR information into structured JavaScript object
45 lines (44 loc) • 1.24 kB
JSON
{
"name": "aewx-metar-parser",
"version": "2.0.0",
"description": "Parse METAR information into structured JavaScript object",
"directories": {
"test": "test",
"dist": "dist"
},
"main": "dist/metar-parser.js",
"scripts": {
"test": "node ./dist/convert.test.js && node ./dist/metar-parser.test.js",
"prettier": "npx prettier --cache --write .",
"eslint": "npx eslint **/*.ts --fix",
"tsc": "npx tsc --build",
"tsc-watch": "npx tsc --watch",
"build": "npm run eslint && npm run prettier && npm run tsc && npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fboes/metar-parser.git"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.15.0",
"typescript-eslint": "^8.24.1"
},
"keywords": [
"flight",
"simulator",
"metar",
"weather"
],
"type": "module",
"author": "Frank Boës <info@3960.org> (https://3960.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fboes/metar-parser/issues"
},
"homepage": "https://github.com/fboes/metar-parser#readme",
"types": "./types/index.d.ts"
}