-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
42 lines (42 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "stopword",
"version": "3.1.1",
"description": "A module for node.js and the browser that takes in text and returns text that is stripped of stopwords. Has pre-defined stopword lists for 62 languages and also takes lists with custom stopwords as input.",
"main": "./dist/stopword.cjs.js",
"module": "./src/stopword.js",
"browser": "./src/stopword.js",
"jsdelivr": "./dist/stopword.umd.min.js",
"files": [
"./dist",
"./src",
"./rollup.config.js"
],
"scripts": {
"build": "rollup --config",
"lint": "standard --fix ./*.js src/*.js test/*.js",
"test": "npm run lint && npm run build && npx ava ./test/test.cjs.js && npx ava ./test/test.esm.mjs && npx ava ./test/ui-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fergiemcdowall/stopword"
},
"keywords": [
"stopword",
"stopwords",
"document-processing",
"search",
"search-index",
"nlp"
],
"devDependencies": {
"batr": "^2.1.10",
"standard": "^17.1.2",
"words-n-numbers": "^9.1.2"
},
"author": "Fergus McDowall",
"license": "MIT",
"bugs": {
"url": "https://github.com/fergiemcdowall/stopword/issues"
},
"homepage": "https://github.com/fergiemcdowall/stopword"
}