@brandcast_app/zoomshift-api-client
Version:
Unofficial TypeScript/JavaScript client for ZoomShift employee scheduling API (reverse-engineered)
74 lines (73 loc) • 1.75 kB
JSON
{
"name": "@brandcast_app/zoomshift-api-client",
"version": "0.1.0",
"description": "Unofficial TypeScript/JavaScript client for ZoomShift employee scheduling API (reverse-engineered)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"keywords": [
"zoomshift",
"employee-scheduling",
"shift-management",
"workforce-management",
"api-client",
"typescript",
"javascript",
"reverse-engineered",
"scheduling",
"calendar",
"shifts"
],
"author": "BrandCast Team",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jduncan-rva/zoomshift-api-client.git"
},
"bugs": {
"url": "https://github.com/jduncan-rva/zoomshift-api-client/issues"
},
"homepage": "https://github.com/jduncan-rva/zoomshift-api-client#readme",
"dependencies": {
"axios": "^1.7.0",
"axios-cookiejar-support": "^5.0.0",
"tough-cookie": "^4.1.0",
"jsdom": "^22.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/jsdom": "^21.1.0",
"@types/tough-cookie": "^4.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}