forked from elastic/elasticsearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.15 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
{
"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": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "14.0.0-SNAPSHOT",
"keywords": [
"elasticsearch",
"mapping",
"REST"
],
"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": "5.4",
"supported_es_branches": [
"5.4",
"5.3",
"5.2",
"5.1",
"5.0",
"2.4",
"1.7",
"0.90"
],
"unstable_es_branches": [
"5.x",
"5.5",
"master"
]
},
"devDependencies": {
"@elastic/eslint-config-kibana": "^0.6.1",
"@elastic/eslint-plugin-kibana-custom": "^1.0.3",
"angular": "1",
"angular-mocks": "1",
"async": "~0.8.0",
"babel-eslint": "^7.2.3",
"blanket": "^1.2.3",
"bluebird": "^2.9.14",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-mocha": "^4.10.1",
"eslint-plugin-react": "^7.1.0",
"expect.js": "^0.3.1",
"express": "~3.4.7",
"find-root": "~0.1.1",
"glob": "~3.2.7",
"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-contrib-watch": "^1.0.0",
"grunt-esvm": "^3.2.8",
"grunt-mocha-cov": "^0.4.0",
"grunt-open": "~0.2.2",
"grunt-prompt": "^1.3.3",
"grunt-run": "^0.6.0",
"grunt-s3": "~0.2.0-alpha.3",
"grunt-saucelabs": "^8.6.2",
"grunt-webpack": "^1.0.11",
"jquery": "^2.2.3",
"js-yaml": "^3.6.0",
"load-grunt-config": "^0.19.2",
"load-grunt-tasks": "^3.5.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.1",
"mocha-screencast-reporter": "~0.1.4",
"moment": "^2.13.0",
"nock": "~0.28.3",
"null-loader": "^0.1.1",
"open": "0.0.5",
"optimist": "~0.6.0",
"semver": "^4.3.6",
"sinon": "^1.17.4",
"split": "~0.3.2",
"through2": "~0.6.3",
"through2-map": "~1.4.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"xmlbuilder": "~0.4.3"
},
"license": "Apache-2.0",
"dependencies": {
"agentkeepalive": "^2.2.0",
"chalk": "^1.0.0",
"lodash": "2.4.2",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.trimend": "^4.5.1"
},
"repository": {
"type": "git",
"url": "http://github.com/elastic/elasticsearch-js.git"
},
"scripts": {
"test": "grunt test",
"generate": "node scripts/generate",
"grunt": "grunt"
},
"engines": {
"node": ">=6.0"
}
}