-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "@elastic/elasticsearch-mock",
"version": "2.0.1",
"description": "Mock utility for the Elasticsearch's Node.js client",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && ava -v && tsd",
"coverage:report": "nyc ava && nyc report --reporter=lcov && echo \"\n==> open coverage/lcov-report/index.html\"",
"coverage:check": "nyc ava && nyc check-coverage --branches=100 --lines=100 --functions=100 --statements=100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/elasticsearch-js-mock.git"
},
"keywords": [
"elasticsearch",
"elastic",
"kibana",
"mapping",
"REST",
"search",
"client",
"index",
"mock",
"test",
"stub",
"sinon"
],
"author": "Tomas Della Vedova",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elastic/elasticsearch-js-mock/issues"
},
"homepage": "https://github.com/elastic/elasticsearch-js-mock#readme",
"devDependencies": {
"@elastic/elasticsearch": "8.17.0",
"ava": "6.2.0",
"node-abort-controller": "3.1.1",
"nyc": "17.1.0",
"standard": "17.1.2",
"tsd": "0.31.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"find-my-way": "^9.1.0",
"into-stream": "^6.0.0"
}
}