-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "wink-lexicon",
"version": "2.2.0",
"description": "English lexicon useful in NLP/NLU",
"keywords": [
"Lexicon",
"Irregular Verbs",
"Irregular Nouns",
"Mass Nouns",
"Singular",
"Plural",
"POS",
"Part-of-Speech",
"wink"
],
"main": "src/wink-lexicon.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha ./test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar no",
"lint": "eslint ./src/*.js ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-lexicon.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-lexicon/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"docker": "^1.0.0",
"eslint": "^7.7.0",
"nyc": "^15.1.0",
"mocha": "^8.1.1"
},
"dependencies": {}
}