-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
57
58
59
60
61
62
63
64
{
"name": "aql-builder",
"version": "0.6.3",
"description": "Dynamic query-builder for ArangoDB",
"keywords": [
"arango",
"arangodb",
"aql",
"query-builder"
],
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist",
"README.md",
"INTERNALS.md"
],
"engines": {
"node": ">=14.16"
},
"type": "module",
"author": {
"name": "Jeff Eaton",
"email": "[email protected]",
"url": "http://eaton.fyi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/autogram-is/aql-builder"
},
"bugs": {
"url": "https://github.com/autogram-is/aql-builder/issues"
},
"scripts": {
"lint": "eslint . --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint-and-fix": "eslint . --ext .ts --fix",
"startup": "docker-compose up -d",
"shutdown": "docker-compose stop",
"test": "ava",
"clean": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"prebuild": "npm run clean",
"publish": "npm publish",
"prepublish": "npm run test; npm run lint; npm run build"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@salesforce/ts-types": "^1.7.3",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"ava": "^5.1.0",
"eslint": "^8.30.0",
"eslint-plugin-ava": "^13.2.0",
"prettier": "^2.8.1",
"ts-node": "^10.8.0",
"typescript": "^4.9.4"
},
"dependencies": {
"arangojs": "^8.1.0"
}
}