wordpos/package.json

33 lines
913 B
JSON
Raw 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"],
2016-01-18 08:09:56 +00:00
"description": "wordpos is a set of part-of-speech utilities for Node.js using the WordNet database.",
"version": "1.0.0-RC1",
2012-05-04 19:23:28 +00:00
"homepage": "https://github.com/moos/wordpos",
"engines": {
2016-01-18 08:09:56 +00:00
"node": ">=0.12"
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": {
"underscore": ">=1.3.1",
"wordnet-db": "latest",
2016-01-18 08:09:56 +00:00
"commander": "^2.0.0"
2012-05-04 19:23:28 +00:00
},
"devDependencies": {
2016-01-18 08:09:56 +00:00
"uubench": "git://github.com/moos/uubench.git",
"chai": "*",
"mocha": "*"
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
}