-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 886 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "airport-diagrams",
"description": "Fetch airport diagrams information",
"version": "1.2.6",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "github.com/fdesjardins"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"superagent": "^6.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"engines": {
"node": ">=6"
},
"files": [
"index.js"
],
"keywords": [
"airports",
"api",
"aviation",
"charts",
"diagrams",
"documents",
"faa"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": "fdesjardins/airport-diagrams",
"scripts": {
"test": "standard *.js && nyc mocha test.js"
}
}