wink-lemmatizer
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -10,7 +10,6 @@ { | ||
"docdash": { | ||
"meta": { | ||
"title": "wink-lemmatizer - Wink JS" | ||
}, | ||
"menu":{ | ||
"Wink JS":{ | ||
"href":"http://winkjs.org", | ||
"target":"_blank" | ||
}, | ||
"Github":{ | ||
@@ -17,0 +16,0 @@ "href":"https://github.com/winkjs/wink-lemmatizer", |
@@ -36,3 +36,3 @@ # Contributing to Wink | ||
### Linting | ||
Well defined linting rules helps us in making code more consistent and avoid bugs. [ESLint](https://eslint.org) and [JSHint](http://jshint.com/) enforces these rules via their configuration files. These files are in the root of each repository. | ||
Well defined linting rules helps us in making code more consistent and avoid bugs. [ESLint](https://eslint.org) enforces these rules via its configuration file. This file is located in the root of each repository. | ||
@@ -44,3 +44,3 @@ | ||
### Testing | ||
Wink requires a test coverage of **atleast > 99.5%** and aims for 100%. Any new contribution must maintain the existing test coverage level. We use [Chai](http://chaijs.com/), [Mocha](https://mochajs.org/) and [Istanbul](https://inch-ci.org/), [Coveralls](https://coveralls.io/) to run tests and determine coverage. | ||
Wink requires a test coverage of **atleast > 99.5%** and aims for 100%. Any new contribution must maintain the existing test coverage level. We use [Chai](http://chaijs.com/), [Mocha](https://mochajs.org/) and [nyc](https://github.com/istanbuljs/nyc), [Coveralls](https://coveralls.io/) to run tests and determine coverage. | ||
@@ -47,0 +47,0 @@ ### Committing |
{ | ||
"name": "wink-lemmatizer", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "English lemmatizer", | ||
@@ -20,4 +20,4 @@ "keywords": [ | ||
"pretest": "npm run lint && npm run docs", | ||
"test": "istanbul cover _mocha ./test/", | ||
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", | ||
"test": "nyc --reporter=html --reporter=text mocha ./test/", | ||
"coverage": "nyc report --reporter=text-lcov | coveralls", | ||
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar no", | ||
@@ -39,17 +39,15 @@ "docs": "jsdoc src/*.js -c .jsdoc.json", | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.0.2", | ||
"docdash": "^1.0.0", | ||
"coveralls": "^3.1.0", | ||
"docker": "^1.0.0", | ||
"eslint": "^5.8.0", | ||
"acorn": "^6.0.0", | ||
"istanbul": "^1.1.0-alpha.1", | ||
"jsdoc": "^3.5.5", | ||
"mocha": "^5.2.0", | ||
"mocha-lcov-reporter": "^1.3.0" | ||
"eslint": "^7.7.0", | ||
"jsdoc": "^3.6.5", | ||
"mocha": "^8.1.1", | ||
"nyc": "^15.1.0", | ||
"docdash": "github:winkjs/docdash" | ||
}, | ||
"runkitExampleFilename": "./runkit/example.js", | ||
"dependencies": { | ||
"wink-lexicon": "^2.0.1", | ||
"wink-lexicon": "^2.1.2", | ||
"wink-porter2-stemmer": "^2.0.0" | ||
} | ||
} |
@@ -7,3 +7,3 @@ # wink-lemmatizer | ||
[<img align="right" src="https://decisively.github.io/wink-logos/logo-title.png" width="100px" >](http://winkjs.org/) | ||
[<img align="right" src="https://decisively.github.io/wink-logos/logo-title.png" width="100px" >](https://winkjs.org/) | ||
@@ -49,3 +49,3 @@ Obtain base form or [lemma](https://nlp.stanford.edu/IR-book/html/htmledition/stemming-and-lemmatization-1.html) of nouns, verbs and adjectives using **`wink-lemmatizer`**. | ||
### Documentation | ||
Check out the [lemmatizer API documentation](http://winkjs.org/wink-lemmatizer/) to learn more. | ||
Check out the [lemmatizer API documentation](https://winkjs.org/wink-lemmatizer/) to learn more. | ||
@@ -57,8 +57,8 @@ ### Need Help? | ||
### About wink | ||
[Wink](http://winkjs.org/) is a family of open source packages for **Statistical Analysis**, **Natural Language Processing** and **Machine Learning** in NodeJS. The code is **thoroughly documented** for easy human comprehension and has a **test coverage of ~100%** for reliability to build production grade solutions. | ||
[Wink](https://winkjs.org/) is a family of open source packages for **Natural Language Processing**, **Machine Learning**, and **Statistical Analysis** in NodeJS. The code is **thoroughly documented** for easy human comprehension and has a **test coverage of ~100%** for reliability to build production grade solutions. | ||
### Copyright & License | ||
**wink-lemmatizer** is copyright 2017-18 [GRAYPE Systems Private Limited](http://graype.in/). | ||
**wink-lemmatizer** is copyright 2017-20 [GRAYPE Systems Private Limited](http://graype.in/). | ||
It is licensed under the terms of the MIT License. |
@@ -6,3 +6,3 @@ // wink-lemmatizer | ||
// | ||
// Copyright (c) 2017-18 GRAYPE Systems Private Limited | ||
// Copyright (c) GRAYPE Systems Private Limited | ||
// | ||
@@ -9,0 +9,0 @@ // Permission is hereby granted, free of charge, to any person obtaining a |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36198
8
12
233
Updatedwink-lexicon@^2.1.2