-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@neume-network/extraction-worker",
"version": "0.7.1",
"description": "The purpose of the neume-network/core Extraction Worker (short: \"EW\") is to parallelize retrieving distributed information from various data sources by abstracting away the complexity of scaling processes accross a distributed system such as e.g. multiple node.js Worker threads.",
"main": "./src/worker.mjs",
"exports": "./src/worker.mjs",
"types": "./src/worker.d.mts",
"ava": {
"files": [
"!test/start.mjs"
],
"nodeArguments": [
"--loader=esmock",
"--no-warnings"
],
"environmentVariables": {
"DEBUG": "neume-network-*",
"RPC_HTTP_HOST": "https://cloudflare-eth.com"
},
"require": [
"dotenv/config"
]
},
"lint-staged": {
"*.{mjs,js,css,md}": "prettier --write"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "ava --verbose --timeout=20s",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neume-network/neume-network-extraction-worker.git"
},
"keywords": [
"worker",
"requests",
"fetch",
"queue",
"batch",
"extraction",
"nfts",
"music"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/neume-network/neume-network-extraction-worker/issues"
},
"homepage": "https://github.com/neume-network/neume-network-extraction-worker#readme",
"devDependencies": {
"ava": "4.2.0",
"esmock": "2.1.0",
"expressively-mocked-fetch": "0.2.3",
"husky": "7.0.4",
"lint-staged": "12.3.8",
"prettier": "2.6.2"
},
"dependencies": {
"@neume-network/schema": "github:neume-network/schema",
"abort-controller": "3.0.0",
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"async-retry": "^1.3.3",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"dotenv": "16.0.0",
"eth-fun": "github:il3ven/eth-fun#1a57ff48ed7cfa05367bfa4497c51542b345c52b",
"fastq": "1.13.0",
"limiter": "2.0.1",
"multiformats": "9.9.0"
}
}