-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
85 lines (85 loc) · 2.21 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
{
"name": "es",
"description": "API around the ElasticSearch RESTful API -- mostly convenience.",
"main": "dist",
"version": "0.8.0",
"author": "Nick Campbell (http://github.com/ncb000gt)",
"contributors": [
"Nick Campbell (http://github.com/ncb000gt)",
"Gabriel Farrel (http://github.com/gsf)",
"Richard Marr (http://github.com/richmarr)",
"Joshua Thomas (http://github.com/brozeph)",
"Brian Link (https://github.com/cpsubrian)",
"Doug Moscrop (https://github.com/dougmoscrop)",
"Robin Momii (http://github.com/rmomii)"
],
"engines": {
"node": ">= 6.0"
},
"keywords": [
"elastic",
"search",
"elastic search",
"elasticsearch",
"es",
"lucene"
],
"repository": "git://github.com/ncb000gt/node-es.git",
"license": "MIT",
"homepage": "http://github.com/ncb000gt/node-es",
"bugs": "http://github.com/ncb000gt/node-es/issues",
"scripts": {
"lint": "gulp lint",
"posttest": "nyc report --reporter=text-lcov | coveralls",
"prepare": "gulp build",
"pretest": "gulp clean && gulp lint",
"test": "NODE_ENV=test nyc mocha ./test/src",
"test:functional": "NODE_ENV=test nyc mocha ./test/functional",
"test:unit": "NODE_ENV=test nyc mocha ./test/src"
},
"nyc": {
"all": true,
"exclude": [
"src/index.js"
],
"include": [
"src"
],
"instrument": false,
"report-dir": "./reports",
"reporter": [
"lcov",
"text",
"text-summary"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"dependencies": {
"@babel/runtime-corejs3": "^7.14.7",
"reqlib": "^1.0.13"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint-plugin-babel": "^5.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"mocha": "^9.0.1",
"nock": "^13.1.0",
"nyc": "^15.1.0",
"stact": "^0.0.12"
}
}