-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "fantasydata-api",
"version": "1.3.4",
"description": "This library is clean and tested wrapper for the FantasyData.com various sports api. Includes methods for MLB, NBA, NFL, and NHL stats.",
"main": "./server/fantasydata-api.js",
"homepage": "https://github.com/n8io/fantasydata-api",
"engines": {
"node": ">=0.12.7"
},
"repository": {
"type": "git",
"url": "https://github.com/n8io/fantasydata-api.git"
},
"test": {
"reporter": "spec"
},
"scripts": {
"test": "npm run test-dev",
"test-dev": "mocha -R $npm_package_test_reporter test/test.spec.js -t 15000",
"test-prod": "npm run coverage && npm run code-climate",
"coverage": "istanbul cover --include-all-sources _mocha -- -R $npm_package_test_reporter test/test.spec.js",
"code-climate": "codeclimate-test-reporter < coverage/lcov.info",
"clean": "rm -rf node_modules/ dist/ coverage/ npm-debug.log"
},
"keywords": [
"FantasyData",
"Fantasy Stats",
"Fantasy",
"Football",
"Baseball",
"Basketball",
"Hockey",
"NflData",
"NFL",
"NBA",
"MLB",
"NHL"
],
"author": "Nate Clark <n8@n8io.com>",
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"lodash": "^3.10.1",
"request": "^2.65.0"
},
"devDependencies": {
"chai": "^3.4.0",
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
}
}