-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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": "eth-fun",
"version": "0.9.3",
"description": "A treeshake-ready, functional library of Ethereum utility functions",
"type": "module",
"main": "./cjs/index.js",
"engines": {
"node": ">=14 <=18",
"npm": "^6.14.17"
},
"exports": {
".": {
"require": "./cjs/index.js",
"default": "./src/index.js"
}
},
"module": "./src/index.js",
"scripts": {
"build:node": "node build.js",
"git:add": "git update-index --add cjs/*",
"test": "ava --verbose --timeout 20s"
},
"pre-commit": [
"build:node",
"test",
"git:add"
],
"ava": {
"nodeArguments": [
"--loader=esmock",
"--no-warnings"
]
},
"keywords": [
"ethereum",
"solidity",
"utility",
"functional"
],
"author": "Tim Daubenschütz <tim@daubenschuetz.de> (https://timdaub.github.io/)",
"license": "GPL-3.0-only",
"dependencies": {
"cross-fetch": "3.1.4",
"web3-eth-abi": "1.4.0"
},
"devDependencies": {
"abort-controller": "3.0.0",
"ava": "3.15.0",
"esbuild": "^0.12.28",
"esmock": "^0.4.0",
"fetch-mock": "^9.11.0",
"pre-commit": "1.2.2",
"test-readme-md": "0.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rugpullindex/eth-fun.git"
},
"bugs": {
"url": "https://github.com/rugpullindex/eth-fun/issues"
},
"homepage": "https://github.com/rugpullindex/eth-fun#readme"
}