forked from michaelkitson/node-flightstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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": "flightstats",
"version": "0.20.0",
"description": "FlightStats API Client",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"flightstats",
"api",
"client",
"flight",
"airline",
"airport",
"iata",
"icao"
],
"main": "lib/flightstats.js",
"dependencies": {
"debug": "^3.1.0",
"moment-timezone": "^0.5.13",
"request": "^2.85.0"
},
"devDependencies": {
"dotenv": "^5.0.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.5",
"nock": "^9.2.5"
},
"homepage": "https://github.com/jhermsmeier/node-flightstats",
"repository": {
"type": "git",
"url": "git+https://github.com/jhermsmeier/node-flightstats.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-flightstats/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require dotenv/config --ui tdd",
"test:clean": "rm -rf test/fixtures/*",
"test:record": "HTTP_RECORD=true mocha --require dotenv/config --ui tdd",
"docs": "jsdoc2md 'lib/**/*.js' --separators --param-list-format list > docs/API.md"
}
}