forked from bttmly/nba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.61 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": "nba",
"version": "0.3.0",
"description": "A Node.js wrapper around the NBA's API",
"repository": "https://github.com/nickb1080/nba.git",
"main": "index.js",
"scripts": {
"update-teams": "node ./scripts/teams",
"update-players": "node ./scripts/players",
"update-data": "npm run update-teams; npm run update-players",
"build": "browserify -s nba --full-path=false -o ./dist/nba.js index.js; uglifyjs -cm -o ./dist/nba-min.js ./dist/nba.js",
"build-light": "npm run clear-data; browserify -s nba --full-path=false -o ./dist/nba-light.js index.js; uglifyjs -cm -o ./dist/nba-light-min.js ./dist/nba-light.js",
"build-all": "npm run build-light; npm run update-data; npm run build",
"watch": "watchify -s nba -o ./dist/nba.js ./",
"clear-data": "node ./scripts/clear-data",
"postinstall": "npm run update-data",
"prepublish": "npm run build-all",
"lint": "jshint ./lib/*.js",
"test": "mocha -R spec ./test/test.js"
},
"author": "Nick Bottomley",
"license": "MIT",
"dependencies": {
"demethodize": "^0.2.0",
"extend": "^1.3.0",
"object-assign": "^2.0.0",
"qs": "^2.3.1",
"query-string": "^1.0.0",
"request": "^2.42.0"
},
"browser": {
"./lib/get-json.js": "./lib/get-jsonp.js",
"./lib/get-script.js": "./lib/get-script-tag.js"
},
"browserify": {},
"devDependencies": {
"chai": "^1.9.1",
"es6ify": "^1.3.0",
"jscs": "^1.6.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"rewire": "nickb1080/rewire",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0",
"uglify-js": "^2.4.15",
"watchify": "^1.0.2"
}
}