| Current Path : /etc/kibana/node_modules/unified/ |
| Current File : //etc/kibana/node_modules/unified/package.json |
{
"name": "unified",
"version": "6.1.6",
"description": "Pluggable text processing interface",
"license": "MIT",
"keywords": [
"process",
"parse",
"transform",
"compile",
"stringify",
"rehype",
"retext",
"remark"
],
"repository": "https://github.com/unifiedjs/unified",
"bugs": "https://github.com/unifiedjs/unified/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"files": [
"index.js",
"lib"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"build-md": "remark . -qfo",
"build-bundle": "browserify index.js -s unified > unified.js",
"build-mangle": "esmangle unified.js > unified.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"xo": {
"space": true,
"esnext": false,
"rules": {
"unicorn/prefer-type-error": "off",
"import/no-unassigned-import": "off",
"guard-for-in": "off",
"max-lines": "off"
},
"ignores": [
"unified.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"cleaned": true
}