@learnlab/datashop-logger
Version:
TypeScript SDK for logging educational data to Carnegie Mellon's DataShop system
63 lines (62 loc) • 1.55 kB
JSON
{
"name": "@learnlab/datashop-logger",
"version": "1.0.0",
"description": "TypeScript SDK for logging educational data to Carnegie Mellon's DataShop system",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test",
"clean": "rm -rf dist coverage"
},
"keywords": [
"cmu",
"datashop",
"logging",
"education",
"analytics",
"typescript",
"sdk"
],
"author": "Carnegie Mellon University",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CMU/datashop-logger-ts"
},
"bugs": {
"url": "https://github.com/CMU/datashop-logger-ts/issues"
},
"homepage": "https://github.com/CMU/datashop-logger-ts#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.4",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}