{
	"name": "ts-mdast",
	"version": "1.0.0",
	"description": "Typescript utilities for Markdown Abstract Syntax Tree",
	"keywords": [
		"markdown",
		"abstract syntax tree",
		"syntax tree",
		"mdast",
		"typescript",
		"create",
		"type guard",
		"guard"
	],
	"homepage": "https://github.com/slune-org/ts-mdast#readme",
	"bugs": {
		"url": "https://github.com/slune-org/ts-mdast/issues"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/slune-org/ts-mdast.git"
	},
	"license": "MIT",
	"author": "Slune",
	"type": "commonjs",
	"main": "./lib/index.js",
	"typings": "./lib/index.d.ts",
	"files": [
		"lib/**",
		"!lib/**/*.spec.*",
		"!lib/**/*.map"
	],
	"scripts": {
		"prepublishOnly": "pm-exec run all",
		"all": "pm-exec run clean && pm-exec run test && pm-exec run build",
		"test": "pm-exec run test:lint && pm-exec run test:depends && pm-exec run test:unit",
		"test:lint": "eslint --config .eslintrc.full.yaml 'src/**/*.ts'",
		"test:depends": "depcheck",
		"test:unit": "cross-env TS_NODE_FILES=true nyc mocha 'src/**/*.spec.ts'",
		"build": "pm-exec run build:main",
		"build:main": "tsc --project tsconfig.project.json",
		"debug": "pm-exec run debug:watch",
		"debug:watch": "onchange 'src/**' -- pm-exec run test:unit",
		"clean": "rimraf lib"
	},
	"dependencies": {
		"@types/mdast": "^3.0.3",
		"@types/unist": "^2.0.3"
	},
	"devDependencies": {
		"@istanbuljs/nyc-config-typescript": "1.0.1",
		"@types/chai": "4.2.11",
		"@types/chai-as-promised": "7.1.2",
		"@types/mocha": "7.0.2",
		"@types/node": "13.9.3",
		"@typescript-eslint/eslint-plugin": "2.25.0",
		"@typescript-eslint/parser": "2.25.0",
		"chai": "4.2.0",
		"chai-as-promised": "7.1.1",
		"cross-env": "7.0.2",
		"depcheck": "0.9.2",
		"eslint": "6.8.0",
		"eslint-config-prettier": "6.10.1",
		"eslint-plugin-import": "2.20.1",
		"eslint-plugin-jsdoc": "22.1.0",
		"eslint-plugin-node": "11.0.0",
		"eslint-plugin-prettier": "3.1.2",
		"mocha": "7.1.1",
		"nyc": "15.0.0",
		"onchange": "6.1.0",
		"pm-exec": "1.0.0",
		"prettier": "2.0.2",
		"remark-frontmatter": "1.3.3",
		"remark-parse": "7.0.2",
		"remark-stringify": "7.0.4",
		"rimraf": "3.0.2",
		"source-map-support": "0.5.16",
		"ts-node": "8.8.1",
		"typescript": "3.8.3",
		"unified": "8.4.2"
	},
	"peerDependencies": {},
	"engines": {
		"node": ">=10.0.0"
	}
}
