pokemon-showdown-client/package.json
Guangcong Luo 2cd13d9de2 Remove babel-cli dependency
At this point, we might as well use babel-core directly.

New system supports source maps for `battledata` and `graphics`! Woo!

It also logs the compile step.
2021-04-13 14:06:25 -07:00

40 lines
1.5 KiB
JSON

{
"name": "pokemon-showdown-client",
"version": "0.11.2",
"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": {
"lint": "eslint --config=.eslintrc.js --cache --cache-file=eslint-cache/base js/ && eslint --config=build-tools/.eslintrc.js --cache --cache-file=eslint-cache/build build-tools/update build-tools/build-indexes && tslint --project .",
"test": "npm run lint && tsc && node build && mocha test/*.js",
"fix": "eslint --config=.eslintrc.js --fix js/ && eslint --config=build-tools/.eslintrc.js --fix build-tools/update build-tools/build-indexes",
"build": "node build",
"build-full": "node build full"
},
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"babel-plugin-remove-import-export": "^1.1.1",
"google-auth-library": "^3.1.0",
"image-size": "^0.7.2",
"output-file-sync": "^2.0.1"
},
"devDependencies": {
"@types/jquery": "^3.5.3",
"@types/mocha": "^5.2.6",
"eslint": "^5.15.1",
"mocha": "^6.0.2",
"preact": "^8.3.1",
"tslint": "^5.13.0",
"typescript": "^4.2.4"
},
"private": true
}