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

52 lines
1.2 KiB
JSON
Raw Normal View History

2021-10-28 16:51:07 +01:00
{
2021-12-12 14:19:24 +00:00
"name": "classcharts-api",
2022-09-23 19:47:56 +01:00
"version": "1.5.3",
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": {
2022-07-21 15:54:23 +01:00
"url": "https://github.com/classchartsapi/classcharts-api-js/issues"
2022-04-10 12:25:43 +01:00
},
2021-12-12 14:19:24 +00:00
"repository": {
2022-04-10 12:25:43 +01:00
"type": "git",
2022-07-21 15:54:23 +01:00
"url": "https://github.com/classchartsapi/classcharts-api-js.git"
2021-12-12 14:19:24 +00:00
},
"main": "./dist/index.js",
"scripts": {
2022-05-24 22:36:50 +01:00
"build": "tsc",
2022-06-24 13:23:34 +01:00
"generateDocs": "typedoc --entryPointStrategy expand ./src",
2022-04-10 11:48:24 +01:00
"test": "jest",
2022-06-24 13:23:34 +01:00
"prepublishOnly": "pnpm 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-07-21 15:35:29 +01:00
"axios": "^0.27.2"
2021-12-12 14:19:24 +00:00
},
"files": [
2022-06-24 13:21:27 +01:00
"dist/**"
2021-12-12 14:19:24 +00:00
],
"devDependencies": {
2022-09-17 19:10:54 +00:00
"@types/jest": "^29.0.3",
2022-07-21 15:35:29 +01:00
"@types/node": "^16",
2022-09-17 19:10:54 +00:00
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
2022-03-07 19:47:34 +00:00
"eslint-config-prettier": "^8.5.0",
2022-09-17 19:10:54 +00:00
"jest": "^29.0.3",
"jest-extended": "^3.1.0",
2022-07-21 15:35:29 +01:00
"prettier": "^2.7.1",
2022-09-17 19:10:54 +00:00
"ts-jest": "^29.0.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
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
}