Files
Zos/Skills/@be/node_modules/stemmer/package.json

47 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "stemmer",
"version": "0.1.4",
"description": "A pretty fast implementation of the Porter Stemmer algorithm",
"license": "MIT",
"keywords": [
"martin",
"porter",
"stemmer",
"algorithm",
"cli",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/stemmer.git"
},
"author": "Titus Wormer <tituswormer@gmail.com>",
"bin": {
"stemmer": "cli.js"
},
"devDependencies": {
"eslint": "^0.10.0",
"istanbul": "^0.3.0",
"jscs": "^1.0.0",
"jscs-jsdoc": "^0.4.0",
"matcha": "^0.6.0",
"mocha": "^2.0.0"
},
"scripts": {
"test": "_mocha --check-leaks test/index.js",
"test-cli": "bash test/index.sh",
"test-coveralls": "istanbul cover _mocha --report lcovonly -- --check-leaks test/index.js",
"test-travis": "npm run test-cli && npm run test-coveralls",
"coverage": "istanbul cover _mocha -- -- test/index.js",
"lint-api": "eslint --rule no-cond-assign:false index.js",
"lint-benchmark": "eslint --global suite,set,bench benchmark.js",
"lint-cli": "eslint --rule no-process-exit:false cli.js",
"lint-test": "eslint --env mocha test/index.js",
"lint-style": "jscs --reporter inline index.js benchmark.js cli.js test/index.js",
"lint": "npm run lint-api && npm run lint-benchmark && npm run lint-cli && npm run lint-test && npm run lint-style",
"make": "npm run lint && npm run coverage",
"install-benchmark": "npm install porter-stemmer && npm install natural",
"benchmark": "matcha benchmark.js"
}
}