-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
35
36
{
"name": "node-snowball",
"version": "0.7.0",
"license": "MIT",
"description": "This module for Node.js provides stemming capability for a variety of languages using Dr. M.F. Porter's Snowball API.",
"authors": [
"Harold Thetiot <[email protected]> (http://melchizetech.com)",
"Richard Hull <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/hthetiot/node-snowball"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/hthetiot/node-snowball/blob/master/LICENSE"
}
],
"main": "index.js",
"scripts": {
"start": "npm build . && jest",
"configure": "node-gyp configure",
"clean": "node-gyp clean",
"build": "node-gyp build",
"release": "npm run clean && npm run configure && npm run build",
"test": "jest"
},
"devDependencies": {
"jest": "^29.4.3",
"node-gyp": "^9.4.0"
},
"dependencies": {
"nan": "^2.14.0"
}
}