{ "name": "classcharts-api", "version": "2.0.0", "description": "A typescript wrapper for getting information from the Classcharts API", "keywords": [ "node", "typescript", "classcharts", "class charts" ], "bugs": { "url": "https://github.com/classchartsapi/classcharts-api-js/issues" }, "repository": { "type": "git", "url": "https://github.com/classchartsapi/classcharts-api-js.git" }, "main": "./dist/index.js", "scripts": { "build": "tsc", "generateDocs": "typedoc --entryPointStrategy expand ./src", "test": "jest", "prepublishOnly": "pnpm run build" }, "author": "James Cook", "license": "ISC", "dependencies": { "axios": "^1.3.5" }, "files": [ "dist/**" ], "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18", "@typescript-eslint/eslint-plugin": "^5.57.1", "@typescript-eslint/parser": "^5.57.1", "eslint": "^8.37.0", "eslint-config-prettier": "^8.8.0", "jest": "^29.5.0", "jest-extended": "^3.2.4", "prettier": "^2.8.7", "ts-jest": "^29.1.0", "typedoc": "^0.23.28", "typescript": "^5.0.3" }, "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js" }, "./types": "./dist/index.d.ts", "./package.json": "./package.json" } }