UNPKG

2.92 kBJSONView Raw
1{
2 "name": "mdast",
3 "version": "0.27.1",
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 "ccount": "^1.0.0",
22 "chalk": "^1.0.0",
23 "collapse-white-space": "^1.0.0",
24 "commander": "^2.0.0",
25 "concat-stream": "^1.0.0",
26 "debug": "^2.0.0",
27 "extend.js": "0.0.2",
28 "he": "^0.5.0",
29 "longest-streak": "^1.0.0",
30 "markdown-table": "^0.4.0",
31 "minimatch": "^2.0.0",
32 "repeat-string": "^1.5.0",
33 "text-table": "^0.2.0",
34 "trim": "^0.0.1",
35 "trim-trailing-lines": "^1.0.0",
36 "user-home": "^2.0.0",
37 "ware": "^1.2.0"
38 },
39 "repository": {
40 "type": "git",
41 "url": "https://github.com/wooorm/mdast.git"
42 },
43 "author": "Titus Wormer <tituswormer@gmail.com>",
44 "contributors": [
45 "Christopher Jeffrey"
46 ],
47 "bin": {
48 "mdast": "bin/mdast"
49 },
50 "directories": {
51 "man": "./man"
52 },
53 "files": [
54 "index.js",
55 "lib",
56 "man",
57 "bin"
58 ],
59 "devDependencies": {
60 "browserify": "^11.0.0",
61 "clone": "^1.0.1",
62 "diff": "^1.0.0",
63 "eslint": "^0.24.0",
64 "esmangle": "^1.0.0",
65 "istanbul": "^0.3.0",
66 "jscs": "^1.0.0",
67 "jscs-jsdoc": "^1.0.0",
68 "matcha": "^0.6.0",
69 "mdast-github": "^0.3.0",
70 "mdast-lint": "^0.4.0",
71 "mdast-man": "^0.4.0",
72 "mdast-toc": "^0.5.0",
73 "mdast-usage": "^0.3.0",
74 "mdast-validate-links": "^0.2.0",
75 "mdast-yaml-config": "^0.2.0",
76 "mocha": "^2.0.0"
77 },
78 "scripts": {
79 "test-api": "mocha --check-leaks test/index.js",
80 "test-api-extensive": "TEST_EXTENDED=true npm run test-api",
81 "test-cli": "bash test/cli.sh",
82 "test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test/index.js",
83 "test-coverage": "istanbul cover _mocha -- -- test/index.js",
84 "test-travis": "npm run test-coveralls && npm run test-cli",
85 "test": "npm run test-api && npm run test-cli",
86 "lint-api": "eslint .",
87 "lint-style": "jscs --reporter inline .",
88 "lint": "npm run lint-api && npm run lint-style",
89 "make": "npm run lint && npm run test-coverage",
90 "benchmark": "matcha benchmark.js",
91 "regenerate": "node script/regenerate-fixtures.js",
92 "build-man": "bin/mdast doc/*.?.md -c .mdastrc-man -q",
93 "build-expressions": "node script/build-expressions.js",
94 "build-formatter": "node script/build-formatter.js",
95 "build-md": "bin/mdast . --quiet",
96 "build-options": "node script/build-options.js",
97 "build-bundle": "browserify index.js -s mdast > mdast.js",
98 "postbuild-bundle": "esmangle mdast.js > mdast.min.js",
99 "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"
100 }
101}