mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
We're now only doing a lint on prepush. We already have CI to make sure nothing is missed; so we can be a bit lazier on prepush.
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "pokemon-showdown",
|
|
"preferGlobal": true,
|
|
"description": "The server for the Pokémon Showdown battle simulator",
|
|
"version": "0.11.2",
|
|
"dependencies": {
|
|
"probe-image-size": "^4.0.0",
|
|
"sockjs": "0.3.18"
|
|
},
|
|
"optionalDependencies": {
|
|
"cloud-env": "^0.2.2",
|
|
"node-oom-heapdump": "^1.0.10",
|
|
"node-static": "^0.7.10",
|
|
"nodemailer": "^4.6.8",
|
|
"permessage-deflate": "^0.1.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=7.7.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node pokemon-showdown",
|
|
"test": "eslint --cache . && tsc && mocha",
|
|
"tsc": "tsc",
|
|
"lint": "eslint --cache ."
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-push": "eslint --cache ."
|
|
}
|
|
},
|
|
"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/cloud-env": "^0.2.0",
|
|
"@types/node": "^8.10.36",
|
|
"@types/node-static": "^0.7.2",
|
|
"@types/nodemailer": "^4.6.5",
|
|
"@types/sockjs": "^0.3.31",
|
|
"eslint": "^5.7.0",
|
|
"husky": "^1.1.2",
|
|
"mocha": "^5.2.0",
|
|
"typescript": "^3.1.3"
|
|
}
|
|
}
|