* feat: migrate coverity to new service model * chore: add coverity ondemand to deprecated services list
25 lines
678 B
JavaScript
25 lines
678 B
JavaScript
'use strict'
|
|
|
|
const deprecatedServices = {
|
|
gittip: new Date('2017-12-29'),
|
|
gratipay: new Date('2017-12-29'),
|
|
dockbit: new Date('2017-12-31'),
|
|
gemnasium: new Date('2018-05-15'),
|
|
snap: new Date('2018-01-23'),
|
|
'snap-ci': new Date('2018-01-23'),
|
|
cauditor: new Date('2018-02-15'),
|
|
dotnetstatus: new Date('2018-04-01'),
|
|
magnumci: new Date('2018-07-08'),
|
|
bithound: new Date('2018-07-08'),
|
|
versioneye: new Date('2018-08-20'),
|
|
issuestats: new Date('2018-09-01'),
|
|
libscore: new Date('2018-09-22'),
|
|
imagelayers: new Date('2018-11-18'),
|
|
nsp: new Date('2018-12-13'),
|
|
'coverity-on-demand': new Date('2018-12-18'),
|
|
}
|
|
|
|
module.exports = {
|
|
deprecatedServices,
|
|
}
|