Add hubot-schedule

This commit is contained in:
Basti 2019-04-17 09:17:43 +01:00
parent 9be9ab5f77
commit bce3c8f76d
No known key found for this signature in database
GPG Key ID: BE4634D632D39B67
3 changed files with 38 additions and 1 deletions

View File

@ -11,5 +11,6 @@
"hubot-rss-reader", "hubot-rss-reader",
"hubot-incoming-webhook", "hubot-incoming-webhook",
"hubot-yubikey-invalidation", "hubot-yubikey-invalidation",
"hubot-kredits" "hubot-kredits",
"hubot-schedule"
] ]

35
package-lock.json generated
View File

@ -731,6 +731,11 @@
"sha.js": "^2.4.8" "sha.js": "^2.4.8"
} }
}, },
"cron-parser": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-1.0.2.tgz",
"integrity": "sha1-7vpR/wEXX539SBHVbMAkB//BKYU="
},
"css-select": { "css-select": {
"version": "1.2.0", "version": "1.2.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
@ -1660,6 +1665,15 @@
"resolved": "https://registry.npmjs.org/hubot-rules/-/hubot-rules-0.1.2.tgz", "resolved": "https://registry.npmjs.org/hubot-rules/-/hubot-rules-0.1.2.tgz",
"integrity": "sha1-jvMS2Lz0umaBExDatp9SjTRj9MU=" "integrity": "sha1-jvMS2Lz0umaBExDatp9SjTRj9MU="
}, },
"hubot-schedule": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/hubot-schedule/-/hubot-schedule-0.6.2.tgz",
"integrity": "sha512-BrBVZHGe8s3ePpyvx0sRwnAsrmF9uCeJ6LdpfmhMLNj76A7UdDwSd2C69lFA3mMuqaEeM6pYEPsDXQvYznm2Pg==",
"requires": {
"cron-parser": "~1.0.1",
"node-schedule": "~1.0.0"
}
},
"hubot-scripts": { "hubot-scripts": {
"version": "2.17.2", "version": "2.17.2",
"resolved": "https://registry.npmjs.org/hubot-scripts/-/hubot-scripts-2.17.2.tgz", "resolved": "https://registry.npmjs.org/hubot-scripts/-/hubot-scripts-2.17.2.tgz",
@ -2325,6 +2339,11 @@
"resolved": "https://registry.npmjs.org/log/-/log-1.4.0.tgz", "resolved": "https://registry.npmjs.org/log/-/log-1.4.0.tgz",
"integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw=" "integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw="
}, },
"long-timeout": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.0.2.tgz",
"integrity": "sha1-82RJuolinROnorJSOk253Wbj/2g="
},
"looper": { "looper": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz", "resolved": "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz",
@ -2588,6 +2607,22 @@
"nan": "^2.3.3" "nan": "^2.3.3"
} }
}, },
"node-schedule": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/node-schedule/-/node-schedule-1.0.0.tgz",
"integrity": "sha1-wZIFsfP4qT12vEI1k4Ofmn57/AM=",
"requires": {
"cron-parser": "1.1.0",
"long-timeout": "0.0.2"
},
"dependencies": {
"cron-parser": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-1.1.0.tgz",
"integrity": "sha1-B1uExFnBVejEgqtNVq/5na5YNS4="
}
}
},
"nodeify": { "nodeify": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/nodeify/-/nodeify-1.0.1.tgz", "resolved": "https://registry.npmjs.org/nodeify/-/nodeify-1.0.1.tgz",

View File

@ -25,6 +25,7 @@
"hubot-redis-brain": "1.0.0", "hubot-redis-brain": "1.0.0",
"hubot-rss-reader": "github:67P/hubot-rss-reader#e3252d63a908c065671c5416a0a4bffa323b27c6", "hubot-rss-reader": "github:67P/hubot-rss-reader#e3252d63a908c065671c5416a0a4bffa323b27c6",
"hubot-rules": "^0.1.0", "hubot-rules": "^0.1.0",
"hubot-schedule": "^0.6.2",
"hubot-scripts": "^2.5.16", "hubot-scripts": "^2.5.16",
"hubot-seen": "github:67P/hubot-seen#fix_debug", "hubot-seen": "github:67P/hubot-seen#fix_debug",
"hubot-shipit": "^0.2.0", "hubot-shipit": "^0.2.0",