UNPKG

mdast

Version:

Markdown processor powered by plugins

113 lines (112 loc) 3.11 kB
{ "name": "mdast", "version": "2.2.2", "description": "Markdown processor powered by plugins", "license": "MIT", "keywords": [ "markdown", "markup", "abstract", "syntax", "tree", "json", "ast", "parse", "stringify", "bin", "cli" ], "dependencies": { "camelcase": "^2.0.0", "ccount": "^1.0.0", "chalk": "^1.0.0", "charm": "^1.0.0", "chokidar": "^1.0.5", "collapse-white-space": "^1.0.0", "commander": "^2.0.0", "concat-stream": "^1.0.0", "debug": "^2.0.0", "elegant-spinner": "^1.0.0", "extend.js": "0.0.2", "glob": "^6.0.1", "globby": "^4.0.0", "he": "^0.5.0", "log-update": "^1.0.1", "longest-streak": "^1.0.0", "markdown-table": "^0.4.0", "minimatch": "^3.0.0", "npm-prefix": "^1.0.1", "repeat-string": "^1.5.0", "text-table": "^0.2.0", "to-vfile": "^1.0.0", "trim": "^0.0.1", "trim-trailing-lines": "^1.0.0", "unified": "^2.0.0", "user-home": "^2.0.0", "vfile": "^1.1.0", "vfile-find-down": "^1.0.0", "vfile-find-up": "^1.0.0", "vfile-reporter": "^1.3.0", "ware": "^1.3.0" }, "repository": { "type": "git", "url": "https://github.com/wooorm/mdast.git" }, "author": "Titus Wormer <tituswormer@gmail.com>", "contributors": [ "Christopher Jeffrey" ], "bin": { "mdast": "bin/mdast" }, "directories": { "man": "./man" }, "files": [ "index.js", "lib", "man", "bin" ], "devDependencies": { "bail": "^1.0.0", "browserify": "^12.0.0", "clone": "^1.0.1", "escodegen": "^1.7.0", "eslint": "^1.1.0", "esmangle": "^1.0.0", "esprima": "^2.6.0", "istanbul": "^0.4.0", "jscs": "^2.0.0", "jscs-jsdoc": "^1.0.0", "mdast-comment-config": "^1.0.0", "mdast-github": "^1.0.0", "mdast-html": "^1.2.1", "mdast-lint": "^1.0.0", "mdast-man": "^1.0.0", "mdast-toc": "^1.0.0", "mdast-usage": "^1.0.1", "mdast-validate-links": "^1.0.0", "mdast-yaml-config": "^1.0.0", "mocha": "^2.0.0" }, "scripts": { "build-man": "bin/mdast doc/*.?.md --config-path .mdastrc-man --quiet", "build-expressions": "node script/build-expressions.js", "build-md": "bin/mdast . --quiet --frail", "build-version": "node script/build-version.js", "build-options": "node script/build-options.js", "build-bundle": "node script/build-bundle.js", "lint-api": "eslint .", "lint-style": "jscs --reporter inline .", "lint": "npm run lint-api && npm run lint-style", "build": "npm run build-expressions && npm run build-version && npm run build-md && npm run build-options && npm run build-man && npm run build-bundle", "test-api": "mocha --check-leaks test/index.js", "test-api-extensive": "TEST_EXTENDED=true npm run test-api", "test-cli": "bash test/cli.sh", "test-coverage": "istanbul cover _mocha -- -- test/index.js", "test-travis": "npm run test-coverage && npm run test-cli", "test": "npm run build && npm run lint && npm run test-coverage && npm run test-cli" } }