Files
pokemon-tcg-sdk-typescript/package.json
2019-08-07 19:36:02 -05:00

39 lines
861 B
JSON

{
"name": "pokemon-tcg-sdk-typescript",
"version": "1.2.1",
"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": {
"test": "mocha --reporter spec --require ts-node/register 'src/**/*.test.ts'",
"build" : "tsc"
},
"author": "Bradyn Glines",
"repository": {
"type": "git",
"url": "https://github.com/PokemonTCG/pokemon-tcg-sdk-typescript"
},
"contributors": [
"CptSpaceToaster",
"Monbrey"
],
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"ts-node": "^4.1.0"
}
}