-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "yahoo-fantasy",
"version": "5.3.0",
"description": "An API to help facilitate the use of the Yahoo! Fantasy Sports API in NodeJS projects.",
"main": "./index.js",
"exports": {
"import": "./YahooFantasy.mjs",
"require": "./index.js"
},
"scripts": {
"test": "node -r esm jasmine-runner.js",
"istanbul": "istanbul cover --include-all-sources jasmine-node tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whatadewitt/yfsapi.git"
},
"engines": {
"node": ">= 8.10.0"
},
"keywords": [
"yahoo",
"fantasy sports",
"sports",
"fantasy"
],
"author": "Luke DeWitt <[email protected]> (http://www.whatadewitt.ca/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/whatadewitt/yfsapi/issues"
},
"homepage": "https://yahoo-fantasy-node-docs.vercel.app/",
"dependencies": {
"esm": "^3.2.25",
"follow-redirects": "^1.13.0",
"oauth-signature": "^1.5.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"jasmine": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"nock": "^9.6.1",
"prettier": "^1.18.2",
"q": "^1.4.1"
},
"directories": {
"test": "tests"
}
}