This repository has been archived on 2026-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
arangosearch/package.json
T

34 lines
926 B
JSON
Raw Normal View History

2022-10-18 19:09:25 +01:00
{
"name": "arangosearch",
2022-11-03 12:05:34 +00:00
"version": "1.0.1",
2022-10-18 23:59:11 +01:00
"description": "Single-collection search for ArangoJS",
2022-10-18 19:24:44 +01:00
"main": "dist/lib/index.js",
2022-10-18 19:09:25 +01:00
"scripts": {
2022-10-18 19:24:44 +01:00
"build": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
2022-10-18 19:09:25 +01:00
},
2022-10-18 19:24:44 +01:00
"keywords": ["arango", "arangodb", "aql"],
"author": "Aneurin \"Anny\" Barker Snook <a@aneur.in>",
"license": "MIT",
2022-10-18 23:59:11 +01:00
"repository": {
"url": "https://github.com/annybs/arangosearch"
},
"bugs": {
"url": "https://github.com/annybs/arangosearch/issues"
},
2022-10-18 19:24:44 +01:00
"dependencies": {
"arangojs": "^7.8.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
2022-10-18 19:09:25 +01:00
}