-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "node-mlb-api",
"version": "0.0.2-6",
"description": "A Node.js wrapper for the new MLB Stats API",
"main": "index.js",
"scripts": {
"test": "npm run build && node test.js",
"eslint-init": "./node_modules/.bin/eslint --init",
"eslint": "./node_modules/.bin/eslint src/*",
"build": "./node_modules/.bin/flow-remove-types src/ -d lib/",
"prepublish": "npm run build",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erwstout/node-mlb-api.git"
},
"keywords": ["API", "MLB", "Node", "JSON", "Sports", "Stats"],
"author": "Eric Stout <https://ericwstout.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erwstout/node-mlb-api/issues"
},
"homepage": "https://github.com/erwstout/node-mlb-api#readme",
"dependencies": {
"request": "^2.83.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.50.0",
"flow-bin": "^0.78.0",
"flow-remove-types": "^1.2.3"
}
}