forked from elastic/elasticsearch-js-mock
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "@short.io/opensearch-mock",
"version": "0.4.0",
"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": {
"@opensearch-project/opensearch": "^2.12.0",
"ava": "^6.1.3",
"nyc": "^17.1.0",
"standard": "^17.1.2",
"tsd": "^0.31.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"find-my-way": "^9.0.1",
"into-stream": "^6.0.0"
}
}