mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-04-26 01:57:21 -05:00
We no longer have the relevant Githook for automatic building, so putting it in `githooks/` no longer makes much sense. It's now manually called with a build script `./build`, like other PS websites (most notably PSDex and the damagecalc).
24 lines
965 B
JSON
24 lines
965 B
JSON
{
|
|
"name": "pokemon-showdown-client",
|
|
"version": "0.11.0",
|
|
"author": "Guangcong Luo <guangcongluo@gmail.com> (http://guangcongluo.com)",
|
|
"homepage": "https://pokemonshowdown.com",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Zarel/Pokemon-Showdown-Client.git"
|
|
},
|
|
"scripts": {
|
|
"test": "eslint --config=.eslintrc.js --cache --cache-file=eslint-cache/base js/*.js data/graphics.js && eslint --config=build-tools/.eslintrc.js --cache --cache-file=eslint-cache/build build-tools/update build-tools/build-indexes",
|
|
"fix": "eslint --config=.eslintrc.js --fix js/*.js data/graphics.js && eslint --config=build-tools/.eslintrc.js --fix build-tools/update build-tools/build-indexes",
|
|
"testcafe": "build-tools/build-indexes && testcafe chrome test/"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^8.0.7",
|
|
"eslint": "^4.11.0",
|
|
"testcafe": "^0.18.4"
|
|
},
|
|
"private": true
|
|
}
|