forked from mkreiser/ESPN-Fantasy-Football-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "espn-fantasy-football-api",
"version": "0.15.0",
"description": "A Javascript API to connect to ESPN's fantasy football API",
"main": "web.js",
"files": [
"web.js",
"node.js",
"web-dev.js",
"node-dev.js"
],
"author": {
"name": "Mike Kreiser",
"email": "[email protected]",
"url": "http://mikekreiser.com/"
},
"engines": {
"node": ">=8.0.0"
},
"license": "LGPL-3.0-only",
"scripts": {
"build": "npm run clean:dist && webpack",
"build:docs": "npm run clean:docs && jsdoc -c .jsdoc.json",
"clean": "npm run clean:dist && npm run clean:docs",
"clean:dist": "rm -rf web.js web.js.map node.js node.js.map web-dev.js web-dev.js.map node-dev.js node-dev.js.map",
"clean:docs": "rm -rf docs",
"ci": "npm run clean && npm run lint && npm run test && npm run build && npm run build:docs",
"lint": "eslint integration-tests/**/*.js src/**/*.js",
"prepublishOnly": "npm run build",
"serve:docs": "npm run build:docs && http-server ./docs -c-1",
"test": "jest src --maxWorkers=2",
"test:integration": "jest integration-tests --maxWorkers=2 --coverage=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkreiser/ESPN-Fantasy-Football-API.git"
},
"bugs": {
"url": "https://github.com/mkreiser/ESPN-Fantasy-Football-API/issues"
},
"homepage": "https://github.com/mkreiser/ESPN-Fantasy-Football-API#readme",
"keywords": [
"api",
"api-client",
"ESPN",
"espn-api",
"espn api",
"fantasy football",
"fantasy",
"football",
"football-api",
"football api"
],
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"@pixi/jsdoc-template": "^2.4.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "23.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"http-server": "^0.11.1",
"jest": "23.6.0",
"jsdoc": "^3.6.3",
"q": "^1.5.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.15"
}
}