entity-finder
Version:
Named entity finder
53 lines (52 loc) • 1.37 kB
JSON
{
"name": "entity-finder",
"version": "0.7.3",
"description": "Named entity finder",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib && rimraf ./types",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./types/**/*.test.d.ts",
"find": "node ./run.js"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"atonic": "^1.0.4",
"axios": "^0.21.1",
"wikipedia-data": "^0.1.1"
},
"devDependencies": {
"@types/node": "latest",
"ava": "^0.23.0",
"debug": "^3.1.0",
"rimraf": "^2.6.2",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entitizer/entity-finder-js.git"
},
"keywords": [
"entity",
"named-entity",
"finder",
"entities",
"ner"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entitizer/entity-finder-js/issues"
},
"homepage": "https://github.com/entitizer/entity-finder-js#readme"
}