{
  "name": "stopword",
  "version": "2.0.8",
  "description": "A module for node.js and the browser that takes in text and returns text that is stripped of stopwords. Has pre-defined stopword lists for 62 languages and also takes lists with custom stopwords as input.",
  "main": "./dist/stopword.cjs.js",
  "module": "./dist/stopword.esm.mjs",
  "browser": "./dist/stopword.umd.js",
  "scripts": {
    "build": "rollup --config",
    "test": "standard './*.js' './test/*.js' && npm run build && npx ava ./test/test.cjs.js && npx ava ./test/test.esm.mjs && npx ava ./test/ui-test.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/fergiemcdowall/stopword"
  },
  "keywords": [
    "stopword",
    "stopwords",
    "document-processing",
    "search",
    "search-index",
    "nlp"
  ],
  "devDependencies": {
    "batr": "^2.1.8",
    "words-n-numbers": "^7.1.2"
  },
  "author": "Fergus McDowall",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fergiemcdowall/stopword/issues"
  },
  "homepage": "https://github.com/fergiemcdowall/stopword"
}
