forked from clay/clay-reindexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "clay-reindexer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "eslint index.js lib/* && nyc --reporter=text --reporter=text-summary mocha",
"report": "echo 'Generating HTML code coverage report' && nyc --reporter=lcov --reporter=text-summary mocha",
"lint": "eslint ."
},
"bin": {
"clayReindex": "./index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"amphora-search": "^4.3.1",
"clayutils": "^1.0.0",
"dotenv": "^5.0.0",
"elasticsearch": "^14.0.0",
"highland": "^2.11.1",
"linebyline": "^1.3.0",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3",
"require-directory": "^2.1.1",
"traverse": "^0.6.6",
"yargs": "^10.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.15.0",
"mocha": "^4.1.0",
"mock-require": "^3.0.1",
"nyc": "^11.4.1",
"sinon": "^4.1.4"
}
}