diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-01-19 10:20:28 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-12-22 15:00:28 +0100 |
commit | 51856e71fb53c0cfa5e6f99a44121ea0f4e6d4bb (patch) | |
tree | 7377657940ba0609922132a313f508bf89b34c04 /packages/gitbook-markdown | |
parent | 97f2c333a87b9d939b5a7dc2884590c971b53291 (diff) | |
download | gitbook-51856e71fb53c0cfa5e6f99a44121ea0f4e6d4bb.zip gitbook-51856e71fb53c0cfa5e6f99a44121ea0f4e6d4bb.tar.gz gitbook-51856e71fb53c0cfa5e6f99a44121ea0f4e6d4bb.tar.bz2 |
Add base node structure
Diffstat (limited to 'packages/gitbook-markdown')
-rw-r--r-- | packages/gitbook-markdown/lib/index.js | 5 | ||||
-rw-r--r-- | packages/gitbook-markdown/package.json | 35 |
2 files changed, 40 insertions, 0 deletions
diff --git a/packages/gitbook-markdown/lib/index.js b/packages/gitbook-markdown/lib/index.js new file mode 100644 index 0000000..24f3ea5 --- /dev/null +++ b/packages/gitbook-markdown/lib/index.js @@ -0,0 +1,5 @@ + + +module.exports = { + +}; diff --git a/packages/gitbook-markdown/package.json b/packages/gitbook-markdown/package.json new file mode 100644 index 0000000..abbde1f --- /dev/null +++ b/packages/gitbook-markdown/package.json @@ -0,0 +1,35 @@ +{ + "name": "gitbook-markdown", + "version": "0.0.0", + "homepage": "https://www.gitbook.com", + "description": "Parse markdown content for gitbook", + "main": "lib/index.js", + "dependencies": { + "lodash": "2.4.1" + }, + "devDependencies": { + "mocha": "1.18.2" + }, + "scripts": { + "test": "export TESTING=true; mocha --reporter list" + }, + "repository": { + "type": "git", + "url": "https://github.com/GitbookIO/gitbook-markdown.git" + }, + "author": "FriendCode Inc. <contact@gitbook.com>", + "license": "Apache 2", + "bugs": { + "url": "https://github.com/GitbookIO/gitbook-markdown/issues" + }, + "contributors": [ + { + "name": "Aaron O'Mullan", + "email": "aaron@gitbook.com" + }, + { + "name": "Samy Pessé", + "email": "samy@gitbook.com" + } + ] +} |