You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
parttimejob/node_modules/markdown-it-toc-and-anchor/package.json

80 lines
1.8 KiB

{
"name": "markdown-it-toc-and-anchor",
"version": "4.2.0",
"description": "markdown-it plugin to add toc and anchor links in headings",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"toc",
"anchor"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/medfreeman/markdown-it-toc-and-anchor.git",
"main": "dist/index.js",
"files": [
"dist",
"src",
"!**/__tests__"
],
"dependencies": {
"clone": "^2.1.0",
"uslug": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.11.0",
"eslint-config-i-am-meticulous": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"markdown-it": "^8.2.2",
"nyc": "^13.1.0",
"standard-version": "^4.4.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --fix .",
"tests": "ava",
"pretest": "npm -s run lint",
"test": "npm -s run tests",
"test-with-coverage": "nyc npm run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel src --ignore \"src/__tests__/**/*.js\" --out-dir dist --delete-dir-on-start",
"release": "standard-version; git push --follow-tags",
"prepare": "yarn build"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"extends": [
"eslint-config-i-am-meticulous"
]
},
"ava": {
"files": [
"**/__tests__/*.js"
],
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"**/__tests__/**"
],
"include": [
"src/**"
]
}
}