-
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.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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": "metar-decoder",
"version": "1.0.3",
"description": "Convert METAR weather reports to JavaScript objects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/ --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larrrssss/metar-decoder.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"typescript": "^4.3.5"
},
"keywords": [
"metar",
"weather",
"converter"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/larrrssss/metar-decoder/issues"
},
"homepage": "https://github.com/larrrssss/metar-decoder#readme",
"dependencies": {
"axios": "^0.21.2"
}
}