UNPKG

retext-equality

Version:

Warn about possible insensitive, inconsiderate language with Retext

89 lines (88 loc) 2.26 kB
{ "name": "retext-equality", "version": "2.4.0", "description": "Warn about possible insensitive, inconsiderate language with Retext", "license": "MIT", "keywords": [ "equal", "race", "religion", "sex", "orientation", "identity", "gender", "sensitive", "insensitive", "neutral", "writing", "language", "english", "retext" ], "repository": "https://github.com/wooorm/retext-equality", "bugs": "https://github.com/wooorm/retext-equality/issues", "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", "contributors": [ "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)" ], "files": [ "lib", "index.js" ], "dependencies": { "array-differ": "^1.0.0", "array-intersection": "^0.1.2", "nlcst-normalize": "^2.0.0", "nlcst-search": "^1.1.1", "nlcst-to-string": "^2.0.0", "object-keys": "^1.0.7", "quotation": "^1.0.1", "unist-util-visit": "^1.0.0" }, "devDependencies": { "array-duplicated": "^1.0.1", "bail": "^1.0.1", "browserify": "^13.0.1", "esmangle": "^1.0.1", "js-yaml": "^3.6.1", "nyc": "^8.1.0", "remark-cli": "^2.0.0", "remark-preset-wooorm": "^1.0.0", "retext": "^4.0.0", "tape": "^4.0.0", "vfile-sort": "^1.0.0", "xo": "^0.16.0" }, "scripts": { "build-extract": "node script/extract.js", "build-md": "remark . --quiet --frail", "build-bundle": "browserify index.js --bare -s retextEquality > retext-equality.js", "build-mangle": "esmangle retext-equality.js > retext-equality.min.js", "build": "npm run build-extract && npm run build-md && npm run build-bundle && npm run build-mangle", "lint": "xo", "test-api": "node test.js", "test-coverage": "nyc --reporter lcov tape test.js", "test": "npm run build && npm run lint && npm run test-coverage" }, "nyc": { "check-coverage": true, "lines": 100, "functions": 100, "branches": 100 }, "xo": { "space": true, "rules": { "guard-for-in": "off", "max-lines": "off", "max-params": "off" }, "ignores": [ "retext-equality.js" ] }, "remarkConfig": { "output": true, "presets": "wooorm" } }