-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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": "eth-data-library",
"version": "1.0.3",
"type": "commonjs",
"description": " eth-data-library is a Nodejs library that provides tools for accessing and processing data on the Ethereum blockchain.",
"repository": {
"type": "git",
"url": "git+https://github.com/mrnazu/eth-data-library.git"
},
"main": "src/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "mocha test/**/*.test.js",
"prepublishOnly": "npm run test",
"docs:build": "npm run docs:generate && cp -r docs/build/* public/"
},
"keywords": [
"nodejs",
"eth",
"npm",
"ethereum",
"blockchain",
"web3",
"data",
"nazu",
"dapp"
],
"author": "Samuel",
"license": "ISC",
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.4.0",
"sinon": "^18.0.0"
},
"dependencies": {
"assert": "^2.1.0",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"web3": "^1.10.4"
},
"bugs": {
"url": "https://github.com/mrnazu/eth-data-library/issues"
},
"homepage": "https://github.com/mrnazu/eth-data-library#readme"
}