Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

retext-porter-stemmer

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

retext-porter-stemmer - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

22

package.json
{
"name": "retext-porter-stemmer",
"version": "0.1.1",
"version": "0.2.0",
"description": "Retext implementation of the Porter Stemmer",

@@ -12,3 +12,3 @@ "license": "MIT",

"dependencies": {
"stemmer": "^0.1.0"
"stemmer": "^0.1.2"
},

@@ -19,7 +19,7 @@ "author": "Titus Wormer <tituswormer@gmail.com>",

"istanbul": "^0.3.0",
"jscs": "^1.6.0",
"jscs": "^1.7.0",
"mocha": "^1.20.0",
"retext": "^0.2.0-rc.2",
"retext-content": "^0.2.2",
"retext-visit": "^0.1.1"
"retext": "^0.2.0",
"retext-content": "^0.2.3",
"retext-visit": "^0.2.0"
},

@@ -31,11 +31,11 @@ "repository": {

"scripts": {
"test": "node_modules/.bin/_mocha --reporter spec --check-leaks -u exports spec/retext-porter-stemmer.spec.js",
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext-porter-stemmer.spec.js",
"test": "node_modules/.bin/_mocha --reporter spec --check-leaks -u exports test.js",
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js",
"lint": "npm run lint-api && npm run lint-test && npm run lint-style",
"lint-api": "node_modules/.bin/eslint index.js --env node --env browser --rule 'quotes: [2, single]'",
"lint-test": "node_modules/.bin/eslint spec/retext-porter-stemmer.spec.js --env node --env mocha --rule 'quotes: [2, single]'",
"lint-style": "node_modules/.bin/jscs index.js spec/retext-porter-stemmer.spec.js --reporter=inline",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- spec/retext-porter-stemmer.spec.js",
"lint-test": "node_modules/.bin/eslint test.js --env node --env mocha --rule 'quotes: [2, single]'",
"lint-style": "node_modules/.bin/jscs index.js test.js --reporter=inline",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test.js",
"make": "npm run lint && npm run coverage"
}
}

@@ -25,5 +25,5 @@ # retext-porter-stemmer [![Build Status](https://travis-ci.org/wooorm/retext-porter-stemmer.svg?branch=master)](https://travis-ci.org/wooorm/retext-porter-stemmer) [![Coverage Status](https://img.shields.io/coveralls/wooorm/retext-porter-stemmer.svg)](https://coveralls.io/r/wooorm/retext-porter-stemmer?branch=master)

```js
var Retext,
visit,
porterStemmer,
var Retext = require('retext'),
visit = require('retext-visit'),
porterStemmer = require('retext-porter-stemmer'),
retext;

@@ -48,6 +48,4 @@

The above example uses retext 0.2.0, which is currently in beta. For an example with the stable retext, see [retext-visit@0.1.0](https://github.com/wooorm/retext-porter-stemmer/tree/0.1.0).
The above example uses retext 0.2.0, which is currently in beta. For an example with the stable retext, see [retext-porter-stemmer@0.1.0](https://github.com/wooorm/retext-porter-stemmer/tree/0.1.0).
This example also uses [retext-visit](https://github.com/wooorm/retext-visit).
## API

@@ -54,0 +52,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc