UNPKG

nodehun

Version:

The Hunspell binding for nodejs that exposes as much of hunspell as possible and also adds new features. Hunspell is a first class spellcheck library used by Google, Apple, and Mozilla.

48 lines (47 loc) 1.64 kB
{ "name": "nodehun", "version": "3.0.2", "description": "The Hunspell binding for nodejs that exposes as much of hunspell as possible and also adds new features. Hunspell is a first class spellcheck library used by Google, Apple, and Mozilla.", "license": "MIT", "keywords": [ "spell", "spellcheck", "spellchecker", "hunspell", "spell check", "spell checker", "check" ], "repository": "https://github.com/Wulf/nodehun", "bugs": "https://github.com/Wulf/nodehun/issues", "author": "Nathan Sweet <nathanjsweet@gmail.com>", "contributors": [ "Nathan Sweet <nathanjsweet@gmail.com>", "Haris Khan <hk12@live.ca>", "Titus Wormer <tituswormer@gmail.com>", "Espen Hovlandsdal <espen@hovlandsdal.com>", "Thomas Beverley <tom.beverley101@gmail.com>" ], "main": "build/Release/Nodehun", "types": "src/Nodehun.d.ts", "gypfile": true, "dependencies": { "node-addon-api": "*" }, "devDependencies": { "@types/mocha": "^5.2.7", "@types/node": "^12.12.6", "bindings": "~1.2.1", "mocha": "^6.2.2", "nodemon": "^1.19.4", "ts-node": "^8.4.1", "typescript": "^3.7.2" }, "scripts": { "start": "nodemon -e ts,js,cc,h,gyp -x \"npm run build && npm run test\"", "start-test": "nodemon -e ts,js -x \"npm run test\"", "build": "node-gyp rebuild -j 8", "test": "ts-node --transpile-only node_modules/mocha/bin/mocha ./test/*.spec.ts", "performance-test": "echo \"This command only works with node version 11 or lower!\" && npm i chart.js@2.9.2 chartjs-node@1.7.1 nodehun@2.0.12 && ts-node test/performance/performance.ts" } }