-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
44
45
46
47
48
{
"name": "flight-info",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec npm run build",
"build": "babel src/ -d build/",
"build:prod": "BABEL_ENV=production npm run build",
"lint": "eslint --ext .js .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"flight-info": "./build/flightinfo.js"
},
"nodemonConfig": {
"ignore": [
"build/*/*.js",
"build/*"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/node": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/preset-env": "^7.8.0",
"@babel/register": "^7.8.0",
"@babel/runtime": "^7.8.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"nodemon": "^2.0.2"
},
"dependencies": {
"airlines-iata-codes": "^1.0.1",
"axios": "^0.19.2",
"commander": "^4.1.0",
"iata-airports": "^1.0.4",
"inquirer": "^7.0.3",
"inquirer-datepicker-prompt": "^0.4.2",
"opn": "^6.0.0"
}
}