-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
65
66
{
"private": true,
"type": "commonjs",
"name": "@arangodb/arangodb",
"version": "0.0.1-alpha.1",
"engines": {
"node": ">=22"
},
"description": "Implementation of the ArangoDB JS API in Node.js.",
"license": "LICENSE SEE LICENSE",
"homepage": "https://github.com/arangodb/node-arangodb",
"bugs": {
"url": "https://github.com/arangodb/node-arangodb/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/arangodb/node-arangodb.git"
},
"author": "ArangoDB GmbH",
"contributors": [
{
"name": "Alan Plum",
"email": "[email protected]"
}
],
"main": "build/index.js",
"exports": {
".": "./build/index.js",
"./*": "./build/*.js"
},
"files": [
"**/*"
],
"scripts": {
"build": "rm -rf build && mkdir build && npm-run-all --parallel build:*",
"build:package": "cat package.json | jq 'delpaths([[\"private\"],[\"scripts\"],[\"devDependencies\"]])' | sed 's/build\\///g' | sed -r 's/src\\/([^\"]+)\\.ts/\\1.js/g' > build/package.json",
"build:js": "tsc -p ./tsconfig.json",
"build:text": "cp LICENSE *.md build/",
"postbuild:js": "find build -type f -name \"*.js\" -exec sed -i 's/exports.default = \\([^;]*\\);/Object.defineProperties(\\1, Object.getOwnPropertyDescriptors(exports)); module.exports = exports = \\1; exports.default = \\1;/g' {} +",
"prepare": "npm run build && node -e 'require(\".\");'"
},
"dependencies": {
"@types/http-errors": "^2.0.4",
"@types/node": "^22",
"@types/qs": "^6.9.18",
"@types/semver": "^7.5.8",
"arangojs": "^10.1.1",
"http-errors": "^2.0.0",
"qs": "^6.14.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@tsconfig/node22": "^22",
"@types/mime-types": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
}
}