UNPKG

toad-scheduler

Version:

In-memory Node.js and browser job scheduler

62 lines (61 loc) 1.61 kB
{ "name": "toad-scheduler", "version": "3.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": "^7.0.5" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.3.1", "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "eslint": "^8.56.0", "jasmine-core": "^5.1.1", "jest": "^29.7.0", "karma": "^6.4.2", "karma-chrome-launcher": "^3.2.0", "karma-jasmine": "^5.1.0", "karma-typescript": "^5.5.4", "prettier": "^3.0.0", "ts-jest": "^29.1.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/*" ] }