diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..ceeadf61 --- /dev/null +++ b/.npmignore @@ -0,0 +1,6 @@ +.git* +test/ +node_modules/ +.jshintrc +.jscsrc +jsdoc.json diff --git a/jsdoc.json b/jsdoc.json new file mode 100644 index 00000000..ad6db37d --- /dev/null +++ b/jsdoc.json @@ -0,0 +1,24 @@ +{ + "tags": { + "allowUnknownTags": true + }, + "source": { + "include": ["README.md", "lib/"], + "exclude": [], + "includePattern": ".+\\.js(doc)?$", + "excludePattern": "(^|\\/|\\\\)_" + }, + "plugins": ["plugins/markdown"], + "templates": { + "cleverLinks": false, + "monospaceLinks": false + }, + "opts": { + "template": "templates/default", + "encoding": "utf8", + "destination": "./docs/", + "recurse": true, + "private": true, + "pedantic": true + } +}