UNPKG

3.11 kBJSONView Raw
1{
2 "name": "mdast",
3 "version": "2.2.2",
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": "^2.0.0",
21 "ccount": "^1.0.0",
22 "chalk": "^1.0.0",
23 "charm": "^1.0.0",
24 "chokidar": "^1.0.5",
25 "collapse-white-space": "^1.0.0",
26 "commander": "^2.0.0",
27 "concat-stream": "^1.0.0",
28 "debug": "^2.0.0",
29 "elegant-spinner": "^1.0.0",
30 "extend.js": "0.0.2",
31 "glob": "^6.0.1",
32 "globby": "^4.0.0",
33 "he": "^0.5.0",
34 "log-update": "^1.0.1",
35 "longest-streak": "^1.0.0",
36 "markdown-table": "^0.4.0",
37 "minimatch": "^3.0.0",
38 "npm-prefix": "^1.0.1",
39 "repeat-string": "^1.5.0",
40 "text-table": "^0.2.0",
41 "to-vfile": "^1.0.0",
42 "trim": "^0.0.1",
43 "trim-trailing-lines": "^1.0.0",
44 "unified": "^2.0.0",
45 "user-home": "^2.0.0",
46 "vfile": "^1.1.0",
47 "vfile-find-down": "^1.0.0",
48 "vfile-find-up": "^1.0.0",
49 "vfile-reporter": "^1.3.0",
50 "ware": "^1.3.0"
51 },
52 "repository": {
53 "type": "git",
54 "url": "https://github.com/wooorm/mdast.git"
55 },
56 "author": "Titus Wormer <tituswormer@gmail.com>",
57 "contributors": [
58 "Christopher Jeffrey"
59 ],
60 "bin": {
61 "mdast": "bin/mdast"
62 },
63 "directories": {
64 "man": "./man"
65 },
66 "files": [
67 "index.js",
68 "lib",
69 "man",
70 "bin"
71 ],
72 "devDependencies": {
73 "bail": "^1.0.0",
74 "browserify": "^12.0.0",
75 "clone": "^1.0.1",
76 "escodegen": "^1.7.0",
77 "eslint": "^1.1.0",
78 "esmangle": "^1.0.0",
79 "esprima": "^2.6.0",
80 "istanbul": "^0.4.0",
81 "jscs": "^2.0.0",
82 "jscs-jsdoc": "^1.0.0",
83 "mdast-comment-config": "^1.0.0",
84 "mdast-github": "^1.0.0",
85 "mdast-html": "^1.2.1",
86 "mdast-lint": "^1.0.0",
87 "mdast-man": "^1.0.0",
88 "mdast-toc": "^1.0.0",
89 "mdast-usage": "^1.0.1",
90 "mdast-validate-links": "^1.0.0",
91 "mdast-yaml-config": "^1.0.0",
92 "mocha": "^2.0.0"
93 },
94 "scripts": {
95 "build-man": "bin/mdast doc/*.?.md --config-path .mdastrc-man --quiet",
96 "build-expressions": "node script/build-expressions.js",
97 "build-md": "bin/mdast . --quiet --frail",
98 "build-version": "node script/build-version.js",
99 "build-options": "node script/build-options.js",
100 "build-bundle": "node script/build-bundle.js",
101 "lint-api": "eslint .",
102 "lint-style": "jscs --reporter inline .",
103 "lint": "npm run lint-api && npm run lint-style",
104 "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",
105 "test-api": "mocha --check-leaks test/index.js",
106 "test-api-extensive": "TEST_EXTENDED=true npm run test-api",
107 "test-cli": "bash test/cli.sh",
108 "test-coverage": "istanbul cover _mocha -- -- test/index.js",
109 "test-travis": "npm run test-coverage && npm run test-cli",
110 "test": "npm run build && npm run lint && npm run test-coverage && npm run test-cli"
111 }
112}