package.json 926 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "arangosearch",
  3. "version": "1.1.0",
  4. "description": "Single-collection search for ArangoJS",
  5. "main": "dist/lib/index.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
  9. },
  10. "keywords": ["arango", "arangodb", "aql"],
  11. "author": "Aneurin \"Anny\" Barker Snook <a@aneur.in>",
  12. "license": "MIT",
  13. "repository": {
  14. "url": "https://github.com/annybs/arangosearch"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/annybs/arangosearch/issues"
  18. },
  19. "dependencies": {
  20. "arangojs": "^7.8.0"
  21. },
  22. "devDependencies": {
  23. "@types/chai": "^4.3.3",
  24. "@types/mocha": "^10.0.0",
  25. "@typescript-eslint/eslint-plugin": "^5.40.1",
  26. "@typescript-eslint/parser": "^5.40.1",
  27. "chai": "^4.3.6",
  28. "eslint": "^8.25.0",
  29. "mocha": "^10.1.0",
  30. "ts-node": "^10.9.1",
  31. "typescript": "^4.8.4"
  32. }
  33. }