-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "covid19-flights-api",
"version": "1.0.0",
"description": "Flights with Covid-19 Cases API server",
"main": "index.js",
"scripts": {
"build": "babel --presets es2015 -d build/ src",
"test": "babel --presets es2015 -d build/ src && mocha ./build/services/flights.spec.js",
"run-dev": "babel --presets es2015 -d build/ src && node ./build/index.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "node ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-the-engineer/covid19-flights-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ng-the-engineer/covid19-flights-api/issues"
},
"homepage": "http://ng-the-engineer.github.io/covid19-flights-api",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"gh-pages": "^3.1.0"
},
"dependencies": {
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^9.1.0",
"koa2-cors": "^2.0.6",
"moment": "^2.27.0"
}
}