pokemon-showdown/package.json
Guangcong Luo bfeb75f547 Remove nonDefaultDependencies hack
Modern versions of npm have made it less and less tenable to have
truly optional dependencies, so we'll just bite the bullet and let
people have slightly slower installs in exchange for not having to
deal with npm weirdness.
2017-11-17 19:31:09 -06:00

55 lines
1.3 KiB
JSON

{
"name": "pokemon-showdown",
"preferGlobal": true,
"description": "The server for the Pokémon Showdown battle simulator",
"version": "0.11.2",
"dependencies": {
"sockjs": "0.3.18"
},
"optionalDependencies": {
"cloud-env": "0.2.2",
"node-static": "0.7.10",
"nodemailer": "4.0.1",
"ofe": "0.5.1"
},
"engines": {
"node": ">=7.7.0"
},
"scripts": {
"start": "node pokemon-showdown",
"test": "eslint --rulesdir=dev-tools/eslint --cache . && tsc && mocha"
},
"bin": "./pokemon-showdown",
"homepage": "http://pokemonshowdown.com",
"repository": {
"type": "git",
"url": "https://github.com/Zarel/Pokemon-Showdown.git"
},
"author": {
"name": "Guangcong Luo",
"email": "guangcongluo@gmail.com",
"url": "http://guangcongluo.com"
},
"contributors": [
{
"name": "Cathy J. Fitzpatrick",
"email": "cathy@cathyjf.com",
"url": "https://cathyjf.com"
},
{
"name": "Bill Meltsner",
"email": "bill@meltsner.com",
"url": "http://www.meltsner.com"
}
],
"private": true,
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.32",
"@types/nodemailer": "^3.1.3",
"eslint": "^4.8.0",
"mocha": "^4.0.1",
"typescript": "^2.6.1"
}
}