Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit 1d710ab

Browse files
committed
Well, that was a bad idea (restoring package.json files for internal modules, sans outdated version numbers)
1 parent 6ec98db commit 1d710ab

File tree

5 files changed

+86
-0
lines changed

5 files changed

+86
-0
lines changed

Diff for: modules/diskdump/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "diskdump",
3+
"description": "Converts disk images to/from JSON",
4+
"main": "./lib/diskdump",
5+
"scripts": {
6+
"test": "echo \"error: no test specified\" && exit 1"
7+
},
8+
"author": "Jeff Parsons <[email protected]>",
9+
"licenses": [
10+
{
11+
"type": "GPLv3",
12+
"url": "http://www.gnu.org/licenses/gpl.html"
13+
}
14+
],
15+
"bin": {
16+
"diskdump": "./bin/diskdump"
17+
}
18+
}

Diff for: modules/filedump/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "filedump",
3+
"description": "Converts file contents to JSON",
4+
"main": "./lib/filedump",
5+
"scripts": {
6+
"test": "echo \"error: no test specified\" && exit 1"
7+
},
8+
"author": "Jeff Parsons <[email protected]>",
9+
"licenses": [
10+
{
11+
"type": "GPLv3",
12+
"url": "http://www.gnu.org/licenses/gpl.html"
13+
}
14+
],
15+
"bin": {
16+
"filedump": "./bin/filedump"
17+
}
18+
}

Diff for: modules/htmlout/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "htmlout",
3+
"description": "Filters HTTP requests and creates default documents from HTML templates",
4+
"main": "./lib/htmlout",
5+
"scripts": {
6+
"test": "echo \"error: no test specified\" && exit 1"
7+
},
8+
"author": "Jeff Parsons <[email protected]>",
9+
"licenses": [
10+
{
11+
"type": "GPLv3",
12+
"url": "http://www.gnu.org/licenses/gpl.html"
13+
}
14+
],
15+
"bin": {
16+
"example": "./bin/htmlout"
17+
}
18+
}

Diff for: modules/markout/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "markout",
3+
"description": "Transforms simplified Markdown to HTML",
4+
"main": "./lib/markout",
5+
"scripts": {
6+
"test": "echo \"error: no test specified\" && exit 1"
7+
},
8+
"author": "Jeff Parsons <[email protected]>",
9+
"licenses": [
10+
{
11+
"type": "GPLv3",
12+
"url": "http://www.gnu.org/licenses/gpl.html"
13+
}
14+
],
15+
"bin": {
16+
"example": "./bin/markout"
17+
}
18+
}

Diff for: modules/pcjs/package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "PCjs",
3+
"description": "IBM PC Emulator",
4+
"author": "Jeff Parsons <[email protected]>",
5+
"licenses": [
6+
{
7+
"type": "GPLv3",
8+
"url": "http://www.gnu.org/licenses/gpl.html"
9+
}
10+
],
11+
"bin": {
12+
"example": "./bin/pcjs"
13+
}
14+
}

0 commit comments

Comments
 (0)