micromark-extension-directive/package.json
2020-12-08 18:08:12 +01:00

77 lines
1.8 KiB
JSON

{
"name": "micromark-extension-directive",
"version": "1.0.0",
"description": "micromark extension to support generic directives (`:cite[smith04]`)",
"license": "MIT",
"keywords": [
"micromark",
"micromark-extension",
"generic",
"directive",
"container",
"extension",
"markdown",
"unified"
],
"repository": "micromark/micromark-extension-directive",
"bugs": "https://github.com/micromark/micromark-extension-directive/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"files": [
"lib/",
"index.js",
"html.js"
],
"dependencies": {
"micromark": "~2.11.0",
"parse-entities": "^2.0.0"
},
"devDependencies": {
"html-void-elements": "^1.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"tape": "^5.0.0",
"xo": "^0.36.0"
},
"scripts": {
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run format && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"guard-for-in": "off",
"unicorn/explicit-length-check": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}