{
  "name": "node-snowball",
  "version": "0.8.0",
  "license": "MIT",
  "description": "This module for Node.js provides stemming capability for a variety of languages using Dr. M.F. Porter's Snowball API.",
  "authors": [
    "Harold Thetiot <hthetiot@gmail.com> (http://melchizetech.com)",
    "Richard Hull <rm_hull@yahoo.co.uk>"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/hthetiot/node-snowball"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/hthetiot/node-snowball/blob/master/LICENSE"
    }
  ],
  "main": "index.js",
  "scripts": {
    "start": "npm build . && jest",
    "configure": "node-gyp configure",
    "clean": "node-gyp clean",
    "build": "node-gyp build",
    "release": "npm run clean && npm run configure && npm run build",
    "test": "jest"
  },
  "devDependencies": {
    "jest": "^29.4.3",
    "node-gyp": "^9.4.0"
  },
  "dependencies": {
    "nan": "^2.22.2"
  }
}
