sentence-similarity
Version:
Sentence similarity algorithm.
57 lines (56 loc) • 1.2 kB
JSON
{
"name": "sentence-similarity",
"version": "3.1.0",
"description": "Sentence similarity algorithm.",
"main": "index.js",
"scripts": {
"test": "jest",
"pretty": "prettier --write --tab-width 2 \"**/*.js\"",
"precommit": "lint-staged && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jloveric/SentenceSimilarity.git"
},
"author": "John Loverich",
"license": "MIT",
"bugs": {
"url": "https://github.com/jloveric/SentenceSimilarity/issues"
},
"homepage": "https://github.com/jloveric/SentenceSimilarity#readme",
"dependencies": {
"clone": "^2.1.1",
"debug": "^2.6.6",
"helper-clockmaker": "^1.0.0"
},
"keywords": [
"sentence",
"similarity",
"order",
"size",
"score",
"slot",
"attention",
"browser"
],
"devDependencies": {
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"similarity-score": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test",
"...": "..."
}
},
"lint-staged": {
"*.js": [
"npm run pretty",
"git add"
]
}
}