-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 935 Bytes
/
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
{
"name": "multilingual-stemmer",
"version": "1.0.2",
"description": "A nodejs implementation of some popular snowball stemming algorithms",
"author": "Vladislav Tupikin <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"compile": "wasm-pack build ./rust-stemmers --out-dir ../dist --release --target nodejs --out-name index",
"prepublishOnly": "npm run compile && node prepare.js && npm run optimize",
"optimize": "wasm-opt ./dist/index_bg.wasm -o ./dist/index_bg.wasm",
"test": "node test/index.js"
},
"keywords": [
"multilingual",
"stemmer",
"stemmers",
"stemming",
"porter",
"snowball",
"webasembly"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MrRefactoring/multilingual-stemmer.git"
},
"devDependencies": {
"wasm-opt": "^1.0.3"
}
}