2021-10-28 16:51:07 +01:00
|
|
|
{
|
2021-12-12 14:19:24 +00:00
|
|
|
"name": "classcharts-api",
|
2022-05-24 22:07:51 +01:00
|
|
|
"version": "1.3.0",
|
2022-04-10 12:25:43 +01:00
|
|
|
"description": "A javascript wrapper for getting information from the Classcharts API",
|
2022-05-24 22:02:27 +01:00
|
|
|
"keywords": [
|
|
|
|
|
"node",
|
|
|
|
|
"typescript",
|
|
|
|
|
"classcharts",
|
|
|
|
|
"class charts"
|
|
|
|
|
],
|
2022-04-10 12:25:43 +01:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/Classcharts-API/js/issues"
|
|
|
|
|
},
|
2021-12-12 14:19:24 +00:00
|
|
|
"repository": {
|
2022-04-10 12:25:43 +01:00
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Classcharts-API/js.git"
|
2021-12-12 14:19:24 +00:00
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"scripts": {
|
2022-03-24 18:56:33 +00:00
|
|
|
"build": "tsc && webpack",
|
2022-03-12 16:14:46 +00:00
|
|
|
"generateDocs": "npx typedoc --entryPointStrategy expand ./src",
|
2022-04-10 11:48:24 +01:00
|
|
|
"test": "jest",
|
2022-01-31 23:15:19 +00:00
|
|
|
"prepublishOnly": "npm run build"
|
2021-12-12 14:19:24 +00:00
|
|
|
},
|
2022-04-10 12:25:43 +01:00
|
|
|
"author": "James Cook",
|
2021-12-12 14:19:24 +00:00
|
|
|
"license": "ISC",
|
|
|
|
|
"dependencies": {
|
2022-03-24 18:56:33 +00:00
|
|
|
"axios": "^0.26.1"
|
2021-12-12 14:19:24 +00:00
|
|
|
},
|
|
|
|
|
"files": [
|
2022-03-24 19:01:00 +00:00
|
|
|
"dist/**",
|
|
|
|
|
"build/**"
|
2021-12-12 14:19:24 +00:00
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
2022-04-10 11:48:24 +01:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-03-07 19:47:34 +00:00
|
|
|
"@types/node": "^17.0.21",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.14.0",
|
2022-03-12 16:14:46 +00:00
|
|
|
"eslint": "^8.11.0",
|
2022-03-07 19:47:34 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-04-10 11:48:24 +01:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
|
"jest-extended": "^2.0.0",
|
2022-01-31 22:32:29 +00:00
|
|
|
"prettier": "^2.5.1",
|
2022-04-10 11:48:24 +01:00
|
|
|
"ts-jest": "^27.1.4",
|
2022-03-24 18:56:33 +00:00
|
|
|
"ts-loader": "^9.2.8",
|
2022-03-07 19:47:34 +00:00
|
|
|
"typedoc": "^0.22.13",
|
2022-03-24 18:56:33 +00:00
|
|
|
"typescript": "^4.6.2",
|
|
|
|
|
"webpack": "^5.70.0",
|
|
|
|
|
"webpack-cli": "^4.9.2"
|
2021-12-12 14:19:24 +00:00
|
|
|
},
|
2022-01-31 22:32:29 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"volta": {
|
2022-03-19 23:33:23 +00:00
|
|
|
"node": "16.14.2"
|
2022-01-31 22:32:29 +00:00
|
|
|
}
|
2021-12-12 14:37:52 +00:00
|
|
|
}
|