blob: 8ba08f4e9edb26bf37b7efbd784aaa8433409d8a [file] [log] [blame]
{
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"bugs": "https://github.com/vfile/vfile/issues",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"Brendan Abbott <brendan.abbott@temando.com>",
"Denys Dovhan <email@denysdovhan.com>",
"Kyle Mathews <mathews.kyle@gmail.com>",
"Shinnosuke Watanabe <snnskwtnb@gmail.com>",
"Sindre Sorhus <sindresorhus@gmail.com>"
],
"dependencies": {
"@types/unist": "^2.0.0",
"is-buffer": "^2.0.0",
"replace-ext": "1.0.0",
"unist-util-stringify-position": "^2.0.0",
"vfile-message": "^2.0.0"
},
"description": "Virtual file format for text processing",
"devDependencies": {
"browserify": "^16.0.0",
"dtslint": "^3.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"remark-cli": "^8.0.0",
"remark-preset-wooorm": "^7.0.0",
"tape": "^5.0.0",
"tinyify": "^2.0.0",
"xo": "^0.32.0"
},
"files": [
"types/index.d.ts",
"core.js",
"index.js"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"keywords": [
"vfile",
"virtual",
"file",
"text",
"processing",
"message",
"warning",
"error",
"remark",
"retext",
"rehype"
],
"license": "MIT",
"name": "vfile",
"nyc": {
"branches": 100,
"check-coverage": true,
"functions": 100,
"lines": 100
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"toc",
{
"heading": "contents"
}
]
]
},
"repository": "vfile/vfile",
"scripts": {
"build": "npm run build-bundle && npm run build-mangle",
"build-bundle": "browserify . -s VFile > vfile.js",
"build-mangle": "browserify . -s VFile -p tinyify > vfile.min.js",
"format": "remark . -qfo && prettier . --write && xo --fix",
"test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test-types": "dtslint types"
},
"types": "types/index.d.ts",
"version": "4.2.0",
"xo": {
"esnext": false,
"ignores": [
"types",
"vfile.js"
],
"prettier": true,
"rules": {
"unicorn/prefer-includes": "off",
"unicorn/prefer-reflect-apply": "off"
}
}
}