wordpos/package.json

30 lines
863 B
JSON
Raw Permalink Normal View History

2012-05-04 19:23:28 +00:00
{
"name": "wordpos",
2012-05-07 07:23:29 +00:00
"author": "Moos <mooster@42at.com>",
2014-05-03 21:41:39 +00:00
"keywords": ["natural", "language", "wordnet", "adjectives", "nouns", "adverbs", "verbs"],
2012-05-04 19:23:28 +00:00
"description": "wordpos is a set of part-of-speech utilities for Node.js using natural's WordNet module.",
2014-05-03 21:41:39 +00:00
"version": "0.1.10",
2012-05-04 19:23:28 +00:00
"homepage": "https://github.com/moos/wordpos",
"engines": {
2012-05-30 23:12:22 +00:00
"node": ">=0.6"
2012-05-04 19:23:28 +00:00
},
2012-05-30 23:12:22 +00:00
"bin": "./bin/wordpos-cli.js",
2012-05-04 19:23:28 +00:00
"dependencies": {
2014-05-03 21:41:39 +00:00
"natural": "NaturalNode/natural",
"underscore": ">=1.3.1",
2012-05-30 23:39:31 +00:00
"WNdb": "latest",
2013-04-14 05:35:50 +00:00
"commander": "1.1.1"
2012-05-04 19:23:28 +00:00
},
"devDependencies": {
"uubench": "git://github.com/moos/uubench.git"
},
"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"
}
2012-05-04 19:23:28 +00:00
}