pokemon-showdown/package.json
Cathy J. Fitzpatrick 79b1814361 Move socket.io to optionalDependencies
The default configuration of Pokemon Showdown does not use
socket.io, so it is more appropriately marked as an optional
dependency. This change is largely cosmetic because npm install
will still install optionalDependencies.
2013-01-23 23:25:07 -07:00

31 lines
669 B
JSON

{
"name": "Pokemon-Showdown",
"version": "0.0.1",
"dependencies": {
"sugar": ">=1.2.5",
"sockjs": ">=0.3.1"
},
"optionalDependencies": {
"socket.io": ">=0.8.7"
},
"scripts": {"start": "node app.js"},
"bin": "./app.js",
"homepage": "http://play.pokemonshowdown.com",
"repository": {
"type": "git",
"url": "https://github.com/Zarel/Pokemon-Showdown.git"
},
"author": {
"name": "Guangcong Luo",
"email": "zarelsl@gmail.com",
"url": "http://aesoft.org"
},
"contributors": [ {
"name": "Bill Meltsner",
"email": "bill@meltsner.com",
"url": "http://www.meltsner.com"
}
],
"private": true
}