This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
113 lines (113 loc) · 3 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
{
"author": {
"name": "Spencer Alger",
"company": "Elasticsearch BV"
},
"name": "elasticsearch",
"description": "The official low-level Elasticsearch client for Node.js and the browser.",
"main": "src/elasticsearch.js",
"homepage": "https://www.elastic.co/guide/en/elasticsearch/client/elasticsearch-js/16.x/index.html",
"version": "16.7.3",
"keywords": [
"elasticsearch",
"mapping",
"REST"
],
"scripts": {
"test": "grunt test",
"generate": "node scripts/generate",
"grunt": "grunt",
"lint": "node scripts/eslint"
},
"browser": {
"./src/lib/connectors/index.js": "./src/lib/connectors/browser_index.js",
"./src/lib/loggers/index.js": "./src/lib/loggers/browser_index.js",
"./src/lib/apis/index.js": "./src/lib/apis/browser_index.js",
"./test/mocks/server.js": "./test/mocks/browser_server.js"
},
"config": {
"blanket": {
"pattern": "specified in test/unit/coverage.js"
},
"default_api_branch": "7.6",
"supported_es_branches": [
"7.6",
"7.5",
"7.4",
"7.3",
"7.2",
"7.1",
"7.0",
"6.8",
"5.6"
],
"unstable_es_branches": [
"7.7",
"7.x",
"master"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.41",
"acorn": "^6.2.0",
"aliasify": "^2.1.0",
"async": "~0.8.0",
"aws-sdk": "2.489.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta",
"backport": "^3.0.2",
"blanket": "^1.2.3",
"bluebird": "^2.9.14",
"browserify": "^16.1.1",
"eslint": "6.0.1",
"eslint-config-prettier": "6.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"expect.js": "^0.3.1",
"fast-glob": "^3.0.4",
"find-root": "~0.1.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.2.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-run": "^0.8.1",
"grunt-webpack": "^3.1.1",
"jquery": "^3.3.1",
"mocha": "^6.1.4",
"moment": "^2.13.0",
"nock": "^9.2.3",
"null-loader": "^0.1.1",
"optimist": "~0.6.0",
"prettier": "1.18.2",
"semver": "^4.3.6",
"sinon": "^1.17.4",
"split": "~0.3.2",
"through2": "~0.6.3",
"through2-map": "~1.4.0",
"webpack": "^3.10.0"
},
"license": "Apache-2.0",
"dependencies": {
"agentkeepalive": "^3.4.1",
"chalk": "^1.0.0",
"lodash": "^4.17.10"
},
"resolutions": {
"grunt-webpack/deep-for-each": "https://github.com/spalger/js-deep-for-each/releases/download/v2.0.2-fix-missing-lodash-dep/deep-for-each-2.0.2.tgz"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/elasticsearch-js-legacy.git"
},
"engines": {
"node": ">=0.8"
}
}