-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chart-supplements",
"description": "Fetch chart supplements for airports",
"version": "2.0.0",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "github.com/fdesjardins"
},
"bugs": {
"url": "https://github.com/fdesjardins/chart-supplements/issues"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"superagent": "^5.2.2"
},
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"standard": "^14.3.4",
"superstruct": "^0.8.3"
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/fdesjardins/chart-supplements#readme",
"keywords": [
"airports",
"api",
"aviation",
"chart supplements",
"charts",
"documents",
"faa",
"supplements"
],
"license": "MIT",
"main": "index.js",
"mocha": {
"ignore": [
"node_modules/**/*.js"
],
"timeout": 30000
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": "fdesjardins/chart-supplements",
"scripts": {
"test": "eslint *.js && nyc mocha test.js"
}
}