UNPKG

@marp-team/marpit

Version:

The skinny framework for creating slide deck from Markdown

90 lines (89 loc) 2.45 kB
{ "name": "@marp-team/marpit", "version": "0.2.0", "description": "The skinny framework for creating slide deck from Markdown", "license": "MIT", "author": { "name": "Marp team", "url": "https://github.com/marp-team" }, "homepage": "https://marpit.marp.app/", "contributors": [ { "name": "Yuki Hattori", "url": "https://github.com/yhatt" } ], "keywords": [ "marp", "markdown", "parser", "slide", "deck", "presentation" ], "repository": { "type": "git", "url": "https://github.com/marp-team/marpit" }, "engines": { "node": ">=6.14.2" }, "main": "lib/index.js", "types": "index.d.ts", "files": [ "lib/", "index.d.ts" ], "scripts": { "build": "yarn --mutex file run clean && babel src --out-dir lib", "clean": "rimraf lib", "docs": "docsify serve ./docs", "format": "prettier **/*.{json,md,ts,yaml,yml}", "format:check": "yarn --mutex file run format -l", "jsdoc": "rimraf jsdoc && jsdoc src -c .jsdoc.json", "lint": "eslint", "lint:all": "eslint .", "prepack": "npm-run-all --npm-path yarn --parallel format:check lint:all test:coverage --sequential build", "preversion": "npm-run-all --npm-path yarn --parallel format:check lint:all test:coverage", "test": "jest", "test:coverage": "jest --coverage", "version": "node version.js && git add -A CHANGELOG.md", "watch": "babel src --out-dir lib -w --verbose" }, "devDependencies": { "@babel/cli": "^7.1.2", "@babel/core": "^7.1.2", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/preset-env": "^7.1.0", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "cheerio": "^1.0.0-rc.2", "codecov": "^3.1.0", "cross-env": "^5.2.0", "dedent": "^0.7.0", "docsify-cli": "^4.2.1", "eslint": "^5.6.1", "eslint-config-airbnb-base": "13.1.0", "eslint-config-prettier": "^3.1.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-prettier": "^3.0.0", "jest": "^23.6.0", "jest-junit": "^5.2.0", "jsdoc": "^3.5.5", "minami": "^1.2.3", "npm-run-all": "^4.1.3", "prettier": "^1.14.3", "rimraf": "^2.6.2" }, "dependencies": { "js-yaml": "^3.12.0", "lodash.kebabcase": "^4.1.1", "markdown-it": "^8.4.2", "markdown-it-front-matter": "^0.1.2", "postcss": "^7.0.5" }, "publishConfig": { "access": "public" } }