wordpos/package.json

41 lines
914 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>",
"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.",
2016-12-22 20:47:48 +00:00
"version": "1.1.1",
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": {
"commander": "^2.0.0",
"underscore": ">=1.3.1",
"wordnet-db": "latest"
2012-05-04 19:23:28 +00:00
},
"devDependencies": {
"mini-bench": "^1.0.0",
2016-01-18 08:09:56 +00:00
"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
}