forked from winkjs/wink-porter2-stemmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "wink-porter2-stemmer",
"version": "1.0.3",
"description": "Implementation of Porter Stemmer Algorithm V2 by Dr Martin F Porter",
"keywords": [
"Stemmer",
"Porter Stemmer V2",
"NLP",
"Natural Language Processing"
],
"main": "src/wink-porter2-stemmer.js",
"scripts": {
"pretest": "npm run lint && npm run hint",
"test": "istanbul cover _mocha ./test/",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"docs": "docco -o ./docs/ ./src/*.js",
"hint": "jshint ./src/*.js ./test/*.js",
"lint": "eslint ./src/*.js ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decisively/wink-porter2-stemmer.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/decisively/wink-porter2-stemmer/issues"
},
"homepage": "https://github.com/decisively/wink-porter2-stemmer#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"docco": "^0.7.0",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0"
}
}