add packages for new spec

Signed-off-by: Kevin Sawicki <kevin@github.com>
This commit is contained in:
Jessica Lord 2015-03-18 15:34:28 -07:00 committed by Kevin Sawicki
parent 587ebd7538
commit cac361e6df
4 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,4 @@
module.exports =
activate: ->
deactivate: ->

View File

@ -0,0 +1,11 @@
{
"name": "package-with-missing-consumed-services",
"consumedServices": {
"service-1": {
"versions": {
">=0.1": "consumeMissingService"
}
}
}
}

View File

@ -0,0 +1,4 @@
module.exports =
activate: ->
deactivate: ->

View File

@ -0,0 +1,12 @@
{
"name": "package-with-missing-provided-services",
"providedServices": {
"service-1": {
"description": "The first service",
"versions": {
"0.2.9": "provideMissingService"
}
}
}
}