-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.04 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
{
"name": "flex-contract",
"version": "2.4.9",
"description": "A modern, flexible Ethereum smart contract abstraction.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/merklejerk/flex-contract.git"
},
"bugs": {
"url": "https://github.com/merklejerk/flex-contract/issues"
},
"author": "Lawrence Forman <me@merklejerk.com>",
"license": "Apache-2.0",
"scripts": {
"test": "mocha --timeout 8000 ./test/*.js"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"ethereumjs-util": "^6.2.0",
"flex-ether": "^1.10.7",
"lodash": "^4.17.15",
"web3-eth-abi": "^1.2.4"
},
"devDependencies": {
"ganache-cli": "^6.7.0",
"ganache-core": "^2.10.2",
"mocha": "^6.2.2",
"mz": "^2.7.0",
"web3": "^1.2.4"
},
"keywords": [
"ethereum",
"smart contracts",
"smart contract",
"contract",
"erc20",
"web3",
"abstraction",
"library",
"self-signed",
"async",
"await",
"private key",
"wallet",
"es2017",
"truffle",
"ens",
"simple",
"easy"
],
"engines": {
"node": ">=8.0"
}
}