initial part-tested edition

This commit is contained in:
Aneurin Barker Snook
2022-10-18 22:04:00 +01:00
parent 361fc2f7f4
commit e9586859bd
9 changed files with 577 additions and 5 deletions
+20 -5
View File
@@ -2,11 +2,26 @@
"name": "arangosearch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC"
"keywords": ["arango", "arangodb", "aql"],
"author": "Aneurin \"Anny\" Barker Snook <a@aneur.in>",
"license": "MIT",
"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"
}
}