1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 03:56:59 +00:00
classcharts-api-js/package.json
James Cook 22e21f9fcd 1.6.0
2023-04-07 12:48:02 +01:00

59 lines
1.4 KiB
JSON

{
"name": "classcharts-api",
"version": "1.6.0",
"description": "A javascript 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.2.3",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"types": "./dist/index.d.ts",
"volta": {
"node": "18.12.1"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": "./dist/index.d.ts",
"./package.json": "./package.json"
}
}