-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 870 Bytes
/
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
{
"name": "flight-designator",
"version": "3.1.1",
"description": "Parse and construct flight designators",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"flight",
"designator",
"code",
"airline",
"number",
"iata",
"icao"
],
"main": "lib/flight-designator",
"scripts": {
"test": "mocha",
"doc": "jsdoc2md 'lib/**/*.js' --separators --param-list-format list > doc/api-reference.md"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^6.1.4"
},
"homepage": "https://github.com/jhermsmeier/node-flight-designator",
"repository": {
"type": "git",
"url": "git+https://github.com/jhermsmeier/node-flight-designator.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-flight-designator/issues"
}
}