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

42 lines
962 B
JSON
Raw Permalink Normal View History

2021-10-28 16:51:07 +01:00
{
2021-12-12 14:19:24 +00:00
"name": "classcharts-api",
2022-03-24 19:03:53 +00:00
"version": "1.1.0",
2021-12-12 14:19:24 +00:00
"description": "",
"repository": {
"url": "https://github.com/jamesatjaminit/classcharts-api"
},
"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-01-31 23:15:19 +00:00
"test": "echo do tests",
"prepublishOnly": "npm run build"
2021-12-12 14:19:24 +00:00
},
"author": "",
"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-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-01-31 22:32:29 +00:00
"prettier": "^2.5.1",
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
}