-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "mlbstats",
"version": "1.3.0",
"description": "An easy-to-use and powerful JavaScript wrapper for fetching official Major League Baseball stats, scores, and information.",
"main": "./src/MLBStats.js",
"directories": {
"example": "examples"
},
"browserify": {
"transform": [["babelify", { "presets": ["env"], "sourceMaps": true }]]
},
"scripts": {
"build": "browserify ./src/MLBStats.js -d | exorcist ./min/MLBStats.min.js.map > ./min/MLBStats.min.js",
"watch": "watchify ./src/MLBStats.js -v -d -o 'exorcist ./min/MLBStats.min.js.map > ./min/MLBStats.min.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakeehall/MLBStats.git"
},
"keywords": [
"MLB",
"major",
"league",
"baseball",
"stats",
"scores"
],
"author": "Jake Hall <jakeehall@gmail.com> (http://jakehall.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakeehall/MLBStats/issues"
},
"homepage": "https://github.com/jakeehall/MLBStats#readme",
"dependencies": {
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"xmldom": "^0.1.27"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"exorcist": "^1.0.1",
"uglify-js": "^3.3.16",
"watchify": "^3.11.0"
}
}