{ "name": "vfile", "version": "4.2.0", "description": "Virtual file format for text processing", "license": "MIT", "keywords": [ "vfile", "virtual", "file", "text", "processing", "message", "warning", "error", "remark", "retext", "rehype" ], "repository": "vfile/vfile", "bugs": "https://github.com/vfile/vfile/issues", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" }, "author": "Titus Wormer (https://wooorm.com)", "contributors": [ "Titus Wormer (https://wooorm.com)", "Brendan Abbott ", "Denys Dovhan ", "Kyle Mathews ", "Shinnosuke Watanabe ", "Sindre Sorhus " ], "types": "types/index.d.ts", "files": [ "types/index.d.ts", "core.js", "index.js" ], "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" }, "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" }, "scripts": { "format": "remark . -qfo && prettier . --write && xo --fix", "build-bundle": "browserify . -s VFile > vfile.js", "build-mangle": "browserify . -s VFile -p tinyify > vfile.min.js", "build": "npm run build-bundle && npm run build-mangle", "test-api": "node test", "test-coverage": "nyc --reporter lcov tape test.js", "test-types": "dtslint types", "test": "npm run format && npm run build && npm run test-coverage && npm run test-types" }, "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, "ignores": [ "types", "vfile.js" ], "rules": { "unicorn/prefer-includes": "off", "unicorn/prefer-reflect-apply": "off" } }, "remarkConfig": { "plugins": [ "preset-wooorm", [ "toc", { "heading": "contents" } ] ] } }