-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "@airport-discovery/metars-tafs",
"version": "1.0.3",
"description": "Get latest METARs and TAFs by ICAO code",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ext .jsx index.js",
"prepush": "yarn run lint",
"release-patch": "yarn version --patch",
"release-minor": "yarn version --minor",
"release-major": "yarn version --major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Airport-Discovery/metars-tafs.git"
},
"author": {
"name": "Airport Discovery",
"email": "hello@airportdiscovery.com",
"url": "https://github.com/Airport-Discovery"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Airport-Discovery/metars-tafs/issues"
},
"homepage": "https://github.com/Airport-Discovery/metars-tafs#readme",
"keywords": [
"metar",
"taf",
"aviation",
"weather",
"pilot",
"api"
],
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.2",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-push": "yarn run prepush"
}
},
"dependencies": {
"axios": "^0.21.0",
"xml2json": "^0.12.0"
}
}