-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
{
"name": "wink-lemmatizer",
"version": "3.0.4",
"description": "English lemmatizer",
"keywords": [
"Lemmatizer",
"Lemma",
"Root",
"Base",
"Noun",
"Verb",
"Adjective",
"Adverb",
"NLP",
"wink"
],
"main": "src/wink-lemmatizer.js",
"scripts": {
"pretest": "npm run lint && npm run docs",
"test": "nyc --reporter=html --reporter=text mocha ./test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar no",
"docs": "jsdoc src/*.js -c .jsdoc.json",
"lint": "eslint ./src/*.js ./test/*.js ./runkit/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-lemmatizer.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-lemmatizer/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"docker": "^1.0.0",
"eslint": "^7.7.0",
"jsdoc": "^3.6.5",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"docdash": "github:winkjs/docdash"
},
"runkitExampleFilename": "./runkit/example.js",
"dependencies": {
"wink-lexicon": "^2.2.0",
"wink-porter2-stemmer": "^2.0.0"
}
}