diff --git a/modules/diskdump/package.json b/modules/diskdump/package.json new file mode 100644 index 000000000..f8aad1089 --- /dev/null +++ b/modules/diskdump/package.json @@ -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 ", + "licenses": [ + { + "type": "GPLv3", + "url": "http://www.gnu.org/licenses/gpl.html" + } + ], + "bin": { + "diskdump": "./bin/diskdump" + } +} diff --git a/modules/filedump/package.json b/modules/filedump/package.json new file mode 100644 index 000000000..7ede06076 --- /dev/null +++ b/modules/filedump/package.json @@ -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 ", + "licenses": [ + { + "type": "GPLv3", + "url": "http://www.gnu.org/licenses/gpl.html" + } + ], + "bin": { + "filedump": "./bin/filedump" + } +} diff --git a/modules/htmlout/package.json b/modules/htmlout/package.json new file mode 100644 index 000000000..9ad71115a --- /dev/null +++ b/modules/htmlout/package.json @@ -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 ", + "licenses": [ + { + "type": "GPLv3", + "url": "http://www.gnu.org/licenses/gpl.html" + } + ], + "bin": { + "example": "./bin/htmlout" + } +} diff --git a/modules/markout/package.json b/modules/markout/package.json new file mode 100644 index 000000000..24cdeab38 --- /dev/null +++ b/modules/markout/package.json @@ -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 ", + "licenses": [ + { + "type": "GPLv3", + "url": "http://www.gnu.org/licenses/gpl.html" + } + ], + "bin": { + "example": "./bin/markout" + } +} diff --git a/modules/pcjs/package.json b/modules/pcjs/package.json new file mode 100644 index 000000000..7fe69a19e --- /dev/null +++ b/modules/pcjs/package.json @@ -0,0 +1,14 @@ +{ + "name": "PCjs", + "description": "IBM PC Emulator", + "author": "Jeff Parsons ", + "licenses": [ + { + "type": "GPLv3", + "url": "http://www.gnu.org/licenses/gpl.html" + } + ], + "bin": { + "example": "./bin/pcjs" + } +}