forked from elastic/elasticsearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.42 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
{
"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.elasticsearch.org/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "2.3.0",
"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",
"lodash": "./node_modules/lodash/dist/lodash.compat.js"
},
"config": {
"blanket": {
"pattern": "specified in test/unit/coverage.js"
},
"supported_es_branches": [
"1.2",
"1.1",
"1.0",
"0.90"
],
"unstable_es_branches": [
"master",
"1.x"
],
"default_api_branch": "1.2"
},
"devDependencies": {
"mocha": "^1.18.2",
"async": "~0.8.0",
"moment": "~2.4.0",
"js-yaml": "~2.1.3",
"optimist": "~0.6.0",
"browserify": "~2.35.1",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.7.1",
"grunt-browserify": "~1.2.11",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-concat": "~0.3.0",
"xmlbuilder": "~0.4.3",
"grunt-contrib-watch": "~0.5.3",
"mocha-lcov-reporter": "0.0.1",
"blanket": "~1.1.5",
"sinon": "~1.7.3",
"nock": "~0.28.1",
"open": "0.0.4",
"load-grunt-tasks": "~0.2.0",
"load-grunt-config": "~0.7.0",
"grunt-s3": "~0.2.0-alpha.3",
"grunt-run": "~0.2.2",
"grunt-contrib-compress": "~0.5.3",
"grunt-contrib-copy": "~0.4.1",
"grunt-prompt": "~0.1.2",
"grunt-mocha-cov": "~0.2.0",
"grunt-open": "~0.2.2",
"glob": "~3.2.7",
"expect.js": "~0.2.0",
"aliasify": "~1.2.4",
"express": "~3.4.7",
"find-root": "~0.1.1",
"event-stream": "~3.1.0",
"grunt-saucelabs": "~5.1.0"
},
"license": "Apache 2.0",
"dependencies": {
"bluebird": "~2.2.1",
"chalk": "~0.5.1",
"forever-agent": "~0.5.2",
"lodash-node": "~2.4"
},
"repository": {
"type": "git",
"url": "http://github.com/elasticsearch/elasticsearch-js.git"
},
"scripts": {
"test": "grunt test",
"generate": "node scripts/generate"
},
"engines": {
"node": ">=0.8 <0.11"
}
}