Well, that was a bad idea (restoring package.json files for internal modules, sans outdated version numbers)

This commit is contained in:
Jeff Parsons 2016-02-09 16:12:49 -08:00
commit c3978e9859
5 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{
"name": "diskdump",
"description": "Converts disk images to/from JSON",
"main": "./lib/diskdump",
"scripts": {
"test": "echo \"error: no test specified\" && exit 1"
},
"author": "Jeff Parsons <Jeff@pcjs.org>",
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"bin": {
"diskdump": "./bin/diskdump"
}
}

View file

@ -0,0 +1,18 @@
{
"name": "filedump",
"description": "Converts file contents to JSON",
"main": "./lib/filedump",
"scripts": {
"test": "echo \"error: no test specified\" && exit 1"
},
"author": "Jeff Parsons <Jeff@pcjs.org>",
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"bin": {
"filedump": "./bin/filedump"
}
}

View file

@ -0,0 +1,18 @@
{
"name": "htmlout",
"description": "Filters HTTP requests and creates default documents from HTML templates",
"main": "./lib/htmlout",
"scripts": {
"test": "echo \"error: no test specified\" && exit 1"
},
"author": "Jeff Parsons <Jeff@pcjs.org>",
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"bin": {
"example": "./bin/htmlout"
}
}

View file

@ -0,0 +1,18 @@
{
"name": "markout",
"description": "Transforms simplified Markdown to HTML",
"main": "./lib/markout",
"scripts": {
"test": "echo \"error: no test specified\" && exit 1"
},
"author": "Jeff Parsons <Jeff@pcjs.org>",
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"bin": {
"example": "./bin/markout"
}
}

14
modules/pcjs/package.json Normal file
View file

@ -0,0 +1,14 @@
{
"name": "PCjs",
"description": "IBM PC Emulator",
"author": "Jeff Parsons <Jeff@pcjs.org>",
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"bin": {
"example": "./bin/pcjs"
}
}