simple-nlp
Advanced tools
Comparing version 0.1.12 to 0.1.13
@@ -1,1 +0,1 @@ | ||
export * from "./types/src"; | ||
export * from "./types/src"; |
@@ -1,1 +0,1 @@ | ||
module.exports = require("./umd/simple-nlp.production.min.js"); | ||
module.exports = require("./umd/simple-nlp.production.min.js"); |
@@ -8,3 +8,3 @@ { | ||
], | ||
"version": "0.1.12", | ||
"version": "0.1.13", | ||
"homepage": "https://github.com/vleandersson/simple-nlp", | ||
@@ -17,2 +17,7 @@ "license": "MIT", | ||
}, | ||
"engines": { | ||
"node": ">=0.10.0" | ||
}, | ||
"main": "index.js", | ||
"dependencies": {}, | ||
"files": [ | ||
@@ -25,7 +30,3 @@ "README.md", | ||
], | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"engines": { | ||
"node": ">=0.10.0" | ||
} | ||
"types": "index.d.ts" | ||
} |
@@ -1,1 +0,2 @@ | ||
export * from "./stemmers/index"; | ||
export * from "./stemmers"; | ||
export * from "./tokenizers"; |
export * from "./porterStemmer/porterStemmer"; | ||
export * from "./porterStemmerFr/porterStemmerFr"; |
@@ -1,1 +0,1 @@ | ||
export declare const porterStemFn: (token: string) => string; | ||
export declare const porterStemmer: (text: string[]) => string[]; |
Sorry, the diff of this file is too big to display
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
67015
15
55