-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "sinopia_indexing_pipeline",
"description": "Sinopia Indexing Pipeline listens for STOMP messages, parses URIs out of messages, retrieves resources from an LDP server, and indexes them into ElasticSearch ",
"bin": {
"reindex": "bin/reindex"
},
"license": "Apache-2.0",
"homepage": "https://github.com/LD4P/sinopia_indexing_pipeline",
"contributors": [
{
"name": "Michael J. Giarlo",
"email": "[email protected]"
}
],
"repository": "github:LD4P/sinopia_indexing_pipeline",
"scripts": {
"coverage": "ALLOW_CONFIG_MUTATIONS=true jest --colors --coverage",
"dev-start": "nodemon --exec babel-node runner.js",
"integration": "ALLOW_CONFIG_MUTATIONS=true jest --colors --testRegex=\\.integration\\.js$",
"eslint": "eslint --color -c .eslintrc.yml --ext js .",
"eslint-fix": "eslint --color -c .eslintrc.yml --ext js --fix .",
"pretty": "prettier --check .",
"pretty-fix": "prettier --write .",
"fix": "npm run pretty-fix && npm run eslint-fix",
"lint": "npm run pretty && npm run eslint",
"start": "npx babel-node runner.js",
"test": "ALLOW_CONFIG_MUTATIONS=true jest --colors --runInBand"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@elastic/elasticsearch": "7.13.0",
"@rdfjs/parser-jsonld": "^1.2.1",
"config": "^3.3.6",
"honeybadger": "^1.4.1",
"lodash": "^4.17.21",
"mongodb": "^3.7.0",
"node-fetch": "^2.6.2",
"promise-retry": "^2.0.1",
"rdf-ext": "^1.3.5",
"url-parse": "^1.5.3",
"wait-on": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@beyonk/promise-retry": "^0.1.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-utils": "^3.0.0",
"jest": "^27.2.0",
"jest-mock-console": "^1.1.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.12",
"prettier": "2.4.0"
}
}