pokemon-showdown/package.json
Konrad Borowski b4f272b9b2 Introduce cache for syntax testing.
This cache is quite awful (welcome to the world of Node.js, I guess),
but at least it works. It has few flaws, like not being able to GC
unused cache files. Still, has to work for now. Changes syntax test
times from 10 minutes on my very slow laptop to 0.6 seconds.

(I wonder how this will work with Travis...)

Later I will try to figure out why JSHint is so unbelievably slow.
2015-03-27 21:28:03 +01:00

63 lines
1.4 KiB
JSON

{
"name": "Pokemon-Showdown",
"version": "0.9.3",
"dependencies": {
"sugar": "1.4.1",
"node-static": "0.7.6",
"cloud-env": "0.1.0",
"sockjs": "0.3.15",
"es6-shim": "0.27.1"
},
"optionalDependencies": {
"nodemailer": "1.3.1",
"http-proxy": "0.10.0"
},
"nonDefaultDependencies": {
"ofe": "0.1.2"
},
"engines": {
"node": "> 0.10.1"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "gulp && mocha"
},
"bin": "./app.js",
"homepage": "http://play.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,
"devDependencies": {
"cache-swap": "~0.2.0",
"gulp": "~3.8.7",
"gulp-cache": "~0.2.8",
"gulp-jshint": "git://github.com/spalger/gulp-jshint#c18df3a11",
"gulp-jscs": "~1.4.0",
"gulp-replace": "~0.5.1",
"jshint-stylish": "~1.0.0",
"mocha": "~2.2.1",
"lazypipe": "~0.2.2",
"merge-stream": "~0.1.7"
}
}