cmark

My personal build of CMark ✏️

Commit
eb0576780eff57422e4d50a8aacfb1514e4299cd
Parent
7a787c37694cd90e71b75f7eb4405fcc83b1fc70
Author
John MacFarlane <jgm@berkeley.edu>
Date

Added packaging for npm module 'commonmark'.

Published to npm. Closes #21. The 'stmd' package should be deprecated.

Diffstat

3 files changed, 54 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Added js/.npmignore 3 3 0
Added js/README.md 24 24 0
Added js/package.json 27 27 0
diff --git a/js/.npmignore b/js/.npmignore
@@ -0,0 +1,3 @@
+commonmark.js
+*.tgz
+index.html
diff --git a/js/README.md b/js/README.md
@@ -0,0 +1,24 @@
+CommonMark
+==========
+
+CommonMark is a rationalized version of Markdown syntax,
+with a [spec][the spec] and BSD3-licensed reference
+implementations in C and JavaScript.
+
+For more information, see <http://commonmark.org>.
+
+To play with this library without installing it, see
+the live dingus at <http://spec.commonmark.org/dingus.html>.
+
+This package includes the commonmark library and a
+command-line executable, `commonmark`.
+
+Basic usage example:
+
+    var reader = new commonmark.DocParser();
+    var writer = new commonmark.HtmlRenderer();
+    var parsed = reader.parse("Hello *world*");
+    var result = writer.render(parsed);
+
+ [the spec]: http://spec.commonmark.org
+
diff --git a/js/package.json b/js/package.json
@@ -0,0 +1,27 @@
+{ "name": "commonmark",
+  "description": "a strongly specified, highly compatible variant of Markdown",
+  "dist-tags": { "latest": "0.9.0" },
+  "versions": "0.9.0",
+  "homepage": "http://commonmark.org",
+  "keywords":
+   [ "markdown",
+     "commonmark",
+     "md",
+     "stmd" ],
+  "repository":
+   { "type": "git",
+     "url": "https://github.com/jgm/CommonMark.git" },
+  "author": "John MacFarlane",
+  "bugs": { "url": "https://github.com/jgm/CommonMark/issues" },
+  "license": "BSD-3-Clause",
+  "version": "0.9.0",
+  "main": "./lib/index.js",
+  "bin": { "commonmark": "./bin/commonmark" },
+  "scripts": { "test": "node ./test.js" },
+  "directories": {
+      "lib": "./lib"
+  },
+  "engines": {
+      "node": "*"
+  }
+}