package.json 738 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "arangosearch",
  3. "version": "1.0.0",
  4. "description": "",
  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. "dependencies": {
  14. "arangojs": "^7.8.0"
  15. },
  16. "devDependencies": {
  17. "@types/chai": "^4.3.3",
  18. "@types/mocha": "^10.0.0",
  19. "@typescript-eslint/eslint-plugin": "^5.40.1",
  20. "@typescript-eslint/parser": "^5.40.1",
  21. "chai": "^4.3.6",
  22. "eslint": "^8.25.0",
  23. "mocha": "^10.1.0",
  24. "ts-node": "^10.9.1",
  25. "typescript": "^4.8.4"
  26. }
  27. }