UNPKG

toad-scheduler

Version:

In-memory Node.js and browser job scheduler

62 lines (61 loc) 1.61 kB
{ "name": "toad-scheduler", "version": "4.0.1", "license": "MIT", "description": "In-memory Node.js and browser job scheduler", "maintainers": [ { "name": "Igor Savin", "email": "kibertoad@gmail.com" } ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest --config=jest.config.json", "test:coverage": "jest --config=jest.config.json --coverage", "test:karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js", "lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\"", "lint:fix": "eslint \"lib/**/*.ts\" \"test/**/*.ts\" --fix", "format": "prettier --write \"{lib,test}/**/*.{js,ts}\" index.ts", "prepublishOnly": "npm run build" }, "dependencies": { "croner": "^10.0.1" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.17.32", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.1", "jasmine-core": "^5.7.1", "jest": "^29.7.0", "karma": "^6.4.4", "karma-chrome-launcher": "^3.2.0", "karma-jasmine": "^5.1.0", "karma-typescript": "^5.5.4", "prettier": "^3.0.0", "ts-jest": "^29.3.2", "typescript": "5.2.2" }, "homepage": "https://github.com/kibertoad/toad-scheduler", "repository": { "type": "git", "url": "git://github.com/kibertoad/toad-scheduler.git" }, "keywords": [ "schedule", "scheduler", "in-memory", "browser", "job", "task" ], "files": [ "README.md", "LICENSE", "dist/*" ] }