mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-23 00:06:15 -05:00
eslint's ignore system first gathers a list of all files, then decides which ones should be ignored. The "gather a list of all files" runs out of memory when used on the main server with its 100 million log files, even though the log directory is ignored. So now we're only passing the files we want linted to eslint. Hopefully they can fix eslint/eslint#5679 so we can just `eslint .` again
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "pokemon-showdown",
|
|
"preferGlobal": true,
|
|
"description": "The server for the Pokémon Showdown battle simulator",
|
|
"version": "0.10.2",
|
|
"dependencies": {
|
|
"sockjs": "0.3.15"
|
|
},
|
|
"optionalDependencies": {
|
|
"cloud-env": "0.1.1",
|
|
"http-proxy": "0.10.0",
|
|
"nodemailer": "1.4.0",
|
|
"node-static": "0.7.7"
|
|
},
|
|
"nonDefaultDependencies": {
|
|
"ofe": "0.1.2"
|
|
},
|
|
"engines": {
|
|
"node": "> 4.0.0"
|
|
},
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"test": "eslint --rulesdir=dev-tools/eslint --cache *.js chat-plugins/ config/ data/ dev-tools/ mods/ tournaments/ test/ && 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": {
|
|
"eslint": "^2.8.0",
|
|
"mocha": "^2.4.5",
|
|
"mock-fs": "^3.8.0"
|
|
}
|
|
}
|