1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00
classcharts-api-js/package.json
James Cook 185a803cce 1.4.0
2022-05-24 22:48:37 +01:00

52 lines
1.2 KiB
JSON

{
"name": "classcharts-api",
"version": "1.4.0",
"description": "A javascript wrapper for getting information from the Classcharts API",
"keywords": [
"node",
"typescript",
"classcharts",
"class charts"
],
"bugs": {
"url": "https://github.com/Classcharts-API/js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Classcharts-API/js.git"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"generateDocs": "npx typedoc --entryPointStrategy expand ./src",
"test": "jest",
"prepublishOnly": "npm run build"
},
"author": "James Cook",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1"
},
"files": [
"dist/**",
"build/**"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"types": "./dist/index.d.ts",
"volta": {
"node": "16.14.2"
}
}