49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "pokemon-tcg-sdk-typescript",
|
|
"version": "2.0.0",
|
|
"description": "Typescript SDK for the PokemonTCG API (https://pokemontcg.io)",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"keywords": [
|
|
"PokemonTCG",
|
|
"Typescript",
|
|
"API",
|
|
"SDK"
|
|
],
|
|
"scripts": {
|
|
"prettier": "prettier --config .prettierrc.json 'src/**/*.ts' --write",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"test": "npm run lint && jest",
|
|
"build": "npm run lint:fix && tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PokemonTCG/pokemon-tcg-sdk-typescript"
|
|
},
|
|
"contributors": [
|
|
"Bradyn Glines (https://github.com/glinesbdev)",
|
|
"CptSpaceToaster (https://github.com/CptSpaceToaster)",
|
|
"Monbrey (https://github.com/Monbrey)",
|
|
"Jonathan Meyer (https://github.com/jonathan-meyer)",
|
|
"Elisabeth Diang (https://github.com/acupoftee)"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "0.21.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "26.0.20",
|
|
"@typescript-eslint/eslint-plugin": "4.17.0",
|
|
"@typescript-eslint/parser": "4.17.0",
|
|
"eslint": "7.22.0",
|
|
"eslint-config-prettier": "8.1.0",
|
|
"eslint-plugin-prettier": "3.3.1",
|
|
"jest": "26.6.3",
|
|
"prettier": "2.2.1",
|
|
"ts-jest": "26.5.3",
|
|
"ts-node": "4.1.0",
|
|
"typescript": "4.1.5"
|
|
}
|
|
}
|