grading
Version:
Grading of student submissions, in particular programming tests.
56 lines (55 loc) • 1.45 kB
JSON
{
"name": "grading",
"version": "1.0.22",
"description": "Grading of student submissions, in particular programming tests.",
"author": "Jens von Pilgrim <jens.vonpilgrim@bht-berlin.de>",
"license": "EPL-2.0",
"bin": {
"grading": "./bin/cli.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && copyfiles --up 1 -e ./src/**/*.ts ./src/**/*.* dist",
"clean": "rimraf dist",
"watch.build": "tsc --watch",
"test": "JEST_JUNIT_SUITE_NAME=\"{filename}\" jest",
"grading": "node dist/grading"
},
"repository": "https://gitlab.bht-berlin.de/nodepackages/grading.git",
"homepage": "https://gitlab.bht-berlin.de/nodepackages/grading",
"keywords": [
"grading",
"moodle",
"students"
],
"files": [
"bin/cli.js",
"dist/",
"defaultFiles/"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"copyfiles": "^2.4.1",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jest-expect-message": "^1.1.3",
"jest-junit": "^15.0.0",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.0",
"comment-json": "^4.2.3",
"exceljs": "^4.3.0",
"iconv-lite": "^0.6.3",
"jszip": "^3.10.1",
"xml2js": "^0.4.23"
}
}