-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "@airport-discovery/notams",
"version": "1.0.0",
"description": "Get Latest NOTAMs (Notices to Airmen) from notams.aim.faa.gov",
"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/notams.git"
},
"author": {
"name": "Airport Discovery",
"email": "hello@airportdiscovery.com",
"url": "https://github.com/Airport-Discovery"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Airport-Discovery/notams/issues"
},
"homepage": "https://github.com/Airport-Discovery/notams#readme",
"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"
}
}