UNPKG

@sohailalam2/markdown-extractor

Version:

Your one solution to extract markdown metadata and content

82 lines (81 loc) 2.84 kB
{ "name": "@sohailalam2/markdown-extractor", "version": "0.2.3", "description": "Your one solution to extract markdown metadata and content", "author": "Sohail Alam", "license": "MIT", "main": "./dist/index.js", "scripts": { "prebuild": "rimraf dist", "build": "tsc -p tsconfig.build.json", "postbuild": "webpack", "docs": "compodoc -p tsconfig.json -d ./docs", "format": "npm run lint:fix && prettier --write \"src/**/*.ts\"", "lint": "eslint --ext .js,.ts src && tsc --project tsconfig.json", "lint:fix": "eslint --fix --ext .js,.ts src && tsc --project tsconfig.json", "prerelease": "npm run lint && npm run test && npm run build", "release": "standard-version", "start:dev": "tsc -w", "test:clear": "jest --clearCache", "test": "npm run test:cov", "posttest": "allure generate --clean --output docs/tests/report", "test:unit": "npm run test:clear && jest --detectOpenHandles", "test:watch": "jest --watch", "test:cov": "jest --coverage --coverageDirectory ../coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json" }, "engines": { "node": ">=12" }, "homepage": "https://github.com/sohailalam2/markdown-extractor#readme", "repository": { "type": "git", "url": "git://github.com/sohailalam2/markdown-extractor.git" }, "bugs": { "url": "https://github.com/sohailalam2/markdown-extractor/issues" }, "dependencies": { "cheerio": "^1.0.0-rc.3", "js-yaml": "^3.14.0", "marked": "^1.1.0" }, "devDependencies": { "@commitlint/cli": "^9.0.1", "@commitlint/config-conventional": "^9.0.1", "@compodoc/compodoc": "^1.1.11", "@types/cheerio": "^0.22.18", "@types/jest": "^26.0.3", "@types/js-yaml": "^3.12.5", "@types/marked": "^1.1.0", "@types/node": "^14.0.14", "@typescript-eslint/eslint-plugin": "^3.4.0", "@typescript-eslint/parser": "^3.4.0", "allure-commandline": "^2.13.0", "eslint": "^7.3.1", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jest": "^23.17.1", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-security": "^1.4.0", "husky": "^4.2.5", "jest": "^26.1.0", "jest-allure": "^0.1.3", "json-loader": "^0.5.7", "prettier": "^2.0.5", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", "standard-version": "^8.0.0", "terser-webpack-plugin": "^3.0.6", "ts-jest": "^26.1.1", "ts-loader": "^7.0.5", "ts-node": "^8.10.2", "tsconfig-paths": "^3.9.0", "typescript": "^3.9.5", "webpack": "^4.43.0", "webpack-bundle-analyzer": "^3.8.0", "webpack-cli": "^3.3.12", "webpack-node-externals": "^1.7.2" } }