UNPKG

2.72 kBJSONView Raw
1{
2 "name": "mdast",
3 "version": "0.26.0",
4 "description": "Markdown processor powered by plugins",
5 "license": "MIT",
6 "keywords": [
7 "markdown",
8 "markup",
9 "abstract",
10 "syntax",
11 "tree",
12 "json",
13 "ast",
14 "parse",
15 "stringify",
16 "bin",
17 "cli"
18 ],
19 "dependencies": {
20 "camelcase": "^1.0.0",
21 "chalk": "^1.0.0",
22 "commander": "^2.0.0",
23 "concat-stream": "^1.0.0",
24 "debug": "^2.0.0",
25 "he": "^0.5.0",
26 "markdown-table": "^0.4.0",
27 "minimatch": "^2.0.0",
28 "repeat-string": "^1.5.0",
29 "text-table": "^0.2.0",
30 "user-home": "^2.0.0",
31 "ware": "^1.2.0"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/wooorm/mdast.git"
36 },
37 "author": "Titus Wormer <tituswormer@gmail.com>",
38 "contributors": [
39 "Christopher Jeffrey"
40 ],
41 "bin": {
42 "mdast": "bin/mdast"
43 },
44 "directories": {
45 "man": "./man"
46 },
47 "files": [
48 "index.js",
49 "lib",
50 "man",
51 "bin"
52 ],
53 "devDependencies": {
54 "browserify": "^10.0.0",
55 "clone": "^1.0.1",
56 "diff": "^1.0.0",
57 "eslint": "^0.24.0",
58 "esmangle": "^1.0.0",
59 "istanbul": "^0.3.0",
60 "jscs": "^1.0.0",
61 "jscs-jsdoc": "^1.0.0",
62 "matcha": "^0.6.0",
63 "mdast-github": "^0.3.0",
64 "mdast-lint": "^0.4.0",
65 "mdast-man": "^0.2.0",
66 "mdast-toc": "^0.5.0",
67 "mdast-usage": "^0.3.0",
68 "mdast-yaml-config": "^0.2.0",
69 "mocha": "^2.0.0"
70 },
71 "scripts": {
72 "test-api": "mocha --check-leaks test/index.js",
73 "test-api-extensive": "TEST_EXTENDED=true npm run test-api",
74 "test-cli": "bash test/cli.sh",
75 "test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test/index.js",
76 "test-coverage": "istanbul cover _mocha -- -- test/index.js",
77 "test-travis": "npm run test-coveralls && npm run test-cli",
78 "test": "npm run test-api && npm run test-cli",
79 "lint-api": "eslint .",
80 "lint-style": "jscs --reporter inline .",
81 "lint": "npm run lint-api && npm run lint-style",
82 "make": "npm run lint && npm run test-coverage",
83 "benchmark": "matcha benchmark.js",
84 "regenerate": "node script/regenerate-fixtures.js",
85 "build-man": "mdast doc/*.?.md -c .mdastrc-man -q -o man/",
86 "build-expressions": "node script/build-expressions.js",
87 "build-formatter": "node script/build-formatter.js",
88 "build-md": "bin/mdast . --output --quiet",
89 "build-options": "node script/build-options.js",
90 "build-bundle": "browserify index.js -s mdast > mdast.js",
91 "postbuild-bundle": "esmangle mdast.js > mdast.min.js",
92 "build": "npm run build-expressions && npm run build-formatter && npm run build-md && npm run build-options && npm run build-man && npm run build-bundle"
93 }
94}