-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@hp4k1h5/aqlquerybuilder.js",
"license": "MIT",
"version": "0.1.9",
"description": "a typescript query builder for the Arango Query Language (AQL) via ArangoSearch",
"scripts": {
"build": "yarn tsc",
"print": "yarn build && yarn doc && yarn tests && npm publish --access public",
"test": "mocha -r ts-node/register",
"tests": "mocha -r ts-node/register 'tests/*.ts'",
"doc": "typedoc --plugin none src/"
},
"main": "built/index.js",
"types": "built/index.d.ts",
"homepage": "https://github.com/HP4k1h5/AQLqueryBuilder.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HP4k1h5/AQLqueryBuilder.js.git"
},
"keywords": [
"AQL",
"arangojs",
"arangodb",
"ArangoSearch",
"nodeJs",
"query-builder",
"query-parser",
"typescript"
],
"dependencies": {
"arangojs": "^8.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"author": "HP4k1h5",
"email": "[email protected]",
"bugs": {
"url": "https://github.com/HP4k1h5/AQLqueryBuilder.js/issues"
},
"files": [
"built/**/*.*"
],
"directories": {
"doc": "docs",
"test": "tests"
}
}