wordpos/package.json

42 lines
976 B
JSON
Raw Normal View History

2012-05-04 19:23:28 +00:00
{
"name": "wordpos",
2018-09-02 22:31:32 +00:00
"version": "1.2.0",
2017-06-12 16:21:24 +00:00
"description": "wordpos is a set of part-of-speech utilities for Node.js using the WordNet database.",
2012-05-07 07:23:29 +00:00
"author": "Moos <mooster@42at.com>",
"keywords": [
"natural",
"language",
"wordnet",
"adjectives",
"nouns",
"adverbs",
"verbs"
],
2012-05-04 19:23:28 +00:00
"homepage": "https://github.com/moos/wordpos",
"engines": {
2018-09-02 10:49:45 +00:00
"node": ">=4"
2012-05-04 19:23:28 +00:00
},
2018-09-02 22:31:32 +00:00
"files": ["bench","bin","lib","src","test","tools"],
2012-05-30 23:12:22 +00:00
"bin": "./bin/wordpos-cli.js",
2012-05-04 19:23:28 +00:00
"dependencies": {
"commander": "^2.0.0",
"underscore": ">=1.3.1",
"wordnet-db": "^3.1.6"
2012-05-04 19:23:28 +00:00
},
"devDependencies": {
2017-06-12 16:43:44 +00:00
"chai": "^4.0.2",
"mini-bench": "^1.0.0",
2018-09-02 10:13:29 +00:00
"mocha": "^5.2.0"
2012-05-04 19:23:28 +00:00
},
"repository": {
"type": "git",
"url": "git://github.com/moos/wordpos.git"
2012-05-04 19:23:28 +00:00
},
"main": "./src/wordpos.js",
2012-05-20 18:29:10 +00:00
"scripts": {
"postinstall": "node tools/stat.js --no-stats index.adv index.adj index.verb index.noun",
2016-01-18 08:09:56 +00:00
"test": "mocha test"
},
"license": "MIT"
2012-05-04 19:23:28 +00:00
}