summaryrefslogtreecommitdiff
path: root/js/package.json
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-04 21:10:04 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-04 21:10:17 -0800
commiteb0576780eff57422e4d50a8aacfb1514e4299cd (patch)
treeb26385a23805e62a067e7b18608e775d8912af4b /js/package.json
parent7a787c37694cd90e71b75f7eb4405fcc83b1fc70 (diff)
Added packaging for npm module 'commonmark'.
Published to npm. Closes #21. The 'stmd' package should be deprecated.
Diffstat (limited to 'js/package.json')
-rw-r--r--js/package.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/js/package.json b/js/package.json
new file mode 100644
index 0000000..4ae8bca
--- /dev/null
+++ 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": "*"
+ }
+}