UNPKG

1.83 kBJSONView Raw
1{
2 "name": "@textlint/markdown-to-ast",
3 "version": "12.0.2",
4 "description": "Parse Markdown to AST with location info.",
5 "homepage": "https://github.com/textlint/textlint/tree/master/packages/@textlint/markdown-to-ast/",
6 "bugs": {
7 "url": "https://github.com/textlint/textlint/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/textlint/textlint.git"
12 },
13 "license": "MIT",
14 "author": "azu",
15 "main": "lib/src/index.js",
16 "module": "module/src/index.js",
17 "types": "lib/src/index.d.ts",
18 "directories": {
19 "test": "test/"
20 },
21 "files": [
22 "bin/",
23 "lib/",
24 "module/",
25 "src/",
26 "!*.tsbuildinfo"
27 ],
28 "scripts": {
29 "build": "tsc -b && tsc -b tsconfig.module.json",
30 "clean": "rimraf lib/ module/",
31 "example:build": "browserify example/js/index.js -o example/app/app.js",
32 "prepublish": "npm run --if-present build",
33 "test": "mocha \"test/**/*.ts\"",
34 "updateSnapshot": "npm run build && node tools/update-fixtures.js",
35 "watch": "tsc -b --watch"
36 },
37 "dependencies": {
38 "@textlint/ast-node-types": "^12.0.0",
39 "debug": "^4.3.2",
40 "remark-footnotes": "^3.0.0",
41 "remark-frontmatter": "^3.0.0",
42 "remark-gfm": "^1.0.0",
43 "remark-parse": "^9.0.0",
44 "traverse": "^0.6.6",
45 "unified": "^9.2.1"
46 },
47 "devDependencies": {
48 "@textlint/ast-tester": "^12.0.2",
49 "@types/mocha": "^8.2.3",
50 "@types/node": "^14.17.5",
51 "@types/traverse": "^0.6.32",
52 "browserify": "^16.5.2",
53 "cross-env": "^7.0.3",
54 "mkdirp": "^1.0.4",
55 "mocha": "^8.4.0",
56 "power-assert": "^1.6.1",
57 "rimraf": "^3.0.2",
58 "ts-node": "^9.1.1",
59 "ts-node-test-register": "^9.0.1",
60 "typescript": "^4.2.4"
61 },
62 "publishConfig": {
63 "access": "public"
64 },
65 "gitHead": "a7826f57258ee6bf68197d983bf5ec71c1b5f565"
66}