Well, that was a bad idea (restoring package.json files for internal modules, sans outdated version numbers)
This commit is contained in:
parent
4315fb8dd3
commit
c3978e9859
5 changed files with 86 additions and 0 deletions
18
modules/diskdump/package.json
Normal file
18
modules/diskdump/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
modules/filedump/package.json
Normal file
18
modules/filedump/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
modules/htmlout/package.json
Normal file
18
modules/htmlout/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
modules/markout/package.json
Normal file
18
modules/markout/package.json
Normal 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
14
modules/pcjs/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue