forked from arangodb/arangojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.62 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"private": true,
"name": "arangojs-fork",
"version": "7.7.0",
"engines": {
"node": ">=10"
},
"license": "Apache-2.0",
"description": "Fork of the official ArangoDB JavaScript driver with some PR merged.",
"homepage": "https://github.com/arangodb/arangojs",
"bugs": {
"url": "https://github.com/arangodb/arangojs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/arangodb/arangojs.git"
},
"author": "ArangoDB GmbH",
"contributors": [
{
"name": "Alan Plum",
"email": "[email protected]"
},
{
"name": "Alex Gorbatchev",
"email": "[email protected]"
}
],
"keywords": [
"arango",
"arangodb",
"aql",
"nosql",
"client",
"driver",
"api",
"http",
"rest"
],
"main": "build/index.js",
"typings": "build/arangojs.d.ts",
"browser": {
"./src/lib/btoa.ts": "./src/lib/btoa.web.ts",
"./src/lib/bytelength.ts": "./src/lib/bytelength.web.ts",
"./src/lib/joinPath.ts": "./src/lib/joinPath.web.ts",
"./src/lib/multipart.ts": "./src/lib/multipart.web.ts",
"./src/lib/request.ts": "./src/lib/request.web.ts"
},
"scripts": {
"arango-test": "mocha --reporter json --require source-map-support/register --timeout 30000 build/test",
"jenkins": "mocha --reporter spec --require source-map-support/register --timeout 0 build/test",
"test": "mocha --reporter spec --require source-map-support/register --timeout 10000 build/test",
"test:docker": "./scripts/test-with-docker",
"pretest": "npm run build",
"build:package": "cat package.json | jq 'delpaths([[\"private\"],[\"scripts\"],[\"devDependencies\"],[\"babel\"],[\"browserslist\"]])' | sed 's/build\\///g' | sed -r 's/src\\/([^\"]+)\\.ts/\\1.js/g' > build/package.json",
"build:cjs": "tsc -p . --outDir ./build/ --target es2018 --declarationMap true",
"build:text": "cp *.md build/",
"build:web": "webpack",
"build": "rm -rf build && mkdir build && npm-run-all --parallel build:*",
"prepare": "npm run build && node -e 'require(\".\");'"
},
"dependencies": {
"es6-error": "^4.1.1",
"multi-part": "^3.0.0",
"x3-linkedlist": "1.2.0",
"xhr": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": ">=16.10.1",
"@types/request-promise": "^4.1.48",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"arangodb-instance-manager": "^1.2.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"mocha": "^9.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"process": "^0.11.10",
"querystring": "^0.2.0",
"regenerator-runtime": "^0.13.9",
"semver": "^7.3.5",
"source-map-support": "^0.5.20",
"typedoc": "^0.22.4",
"typescript": "^4.4.3",
"url": "^0.11.0",
"wait-on": "^6.0.0",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"xunit-file": "^1.0.0"
},
"babel": {
"plugins": [
"@babel/proposal-class-properties"
],
"presets": [
"@babel/env",
[
"@babel/typescript",
{
"allowNamespaces": true
}
]
]
},
"browserslist": [
"> 2%",
"ie 11"
]
}