-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "elasticsearch-dummy-success-responder",
"version": "1.0.2",
"description": "Dummy server to mimic elasticsearch success response upon receiving bulk post requests",
"main": "server.js",
"nyc": {
"exclude": [
"test/*.js"
]
},
"scripts": {
"test": "node_modules/nyc/bin/nyc.js --reporter=text-summary node_modules/mocha/bin/mocha --reporter=spec test/*.js --exit",
"coverage": "node_modules/nyc/bin/nyc.js report --reporter=lcov",
"build": "npm run test && npm run coverage",
"server": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rimaulana/elasticsearch-dummy-success-responder.git"
},
"keywords": [
"elasticsearch",
"dummy",
"response",
"success",
"node",
"express",
"simulation"
],
"author": "Rio Maulana <[email protected]> (https://github.com/rimaulana)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rimaulana/elasticsearch-dummy-success-responder/issues"
},
"homepage": "https://github.com/rimaulana/elasticsearch-dummy-success-responder#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^6.0.1",
"nyc": "^14.1.1"
}
}