Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "node-cron",
  3. "version": "3.0.0",
  4. "description": "A simple cron-like task scheduler for Node.js",
  5. "author": "Lucas Merencia",
  6. "license": "ISC",
  7. "homepage": "https://github.com/merencia/node-cron",
  8. "main": "src/node-cron.js",
  9. "scripts": {
  10. "test": "nyc --reporter=html --reporter=text mocha --recursive",
  11. "coverage": "nyc report --reporter=text-lcov | coveralls",
  12. "lint": "./node_modules/.bin/eslint ./src ./test",
  13. "check": "npm run lint && npm test && npm run coverage"
  14. },
  15. "engines": {
  16. "node": ">=6.0.0"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/merencia/node-cron.git"
  21. },
  22. "keywords": [
  23. "cron",
  24. "scheduler",
  25. "schedule",
  26. "task",
  27. "job"
  28. ],
  29. "bugs": {
  30. "url": "https://github.com/merencia/node-cron/issues"
  31. },
  32. "devDependencies": {
  33. "chai": "^4.2.0",
  34. "coveralls": "^3.0.2",
  35. "eslint": "^5.7.0",
  36. "istanbul": "^0.4.2",
  37. "mocha": "^6.1.4",
  38. "nyc": "^14.0.0",
  39. "sinon": "^7.3.2"
  40. },
  41. "dependencies": {
  42. "moment-timezone": "^0.5.31"
  43. }
  44. }