This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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
77
78
{
"name": "batch-payments",
"version": "1.0.0",
"description": "A batch payments solution for ethereum",
"keywords": [
"ethereum",
"erc20",
"token",
"payment",
"massive",
"batch",
"gas",
"efficient"
],
"contributors": [
"Ariel Futoransky <futo@disarmista.com > (http://disarmista.com/)",
"Agustin Zavalla <agustinz@disarmista.com > (http://disarmista.com/)",
"Wibson Development Team <developers@wibson.org> (https://wibson.org)"
],
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/wibsonorg/BatchPayments.git"
},
"engines": {
"node": "~8.11.3",
"npm": ">= 6.1.0"
},
"main": "",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"coverage:report": "istanbul report html",
"ganache": "ganache-cli",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "standard || :",
"lint:js:fix": "standard --fix || :",
"lint:sol": "solhint contracts/**/*.sol || :",
"test": "scripts/test.sh",
"test:coverage": "TEST_COVERAGE=true truffle test --network coverage && npm run coverage:report",
"truffle": "truffle"
},
"dependencies": {
"ethereumjs-abi": "^0.6.5",
"seedrandom": "^3.0.1",
"solium": "^1.2.3",
"truffle": "^4.1.15",
"truffle-assertions": "^0.7.2",
"web3-provider-engine": "15.0.4"
},
"devDependencies": {
"@0x/sol-coverage": "^3.0.3",
"@0x/sol-trace": "^2.0.11",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"ganache-cli": "^6.4.1",
"istanbul": "^0.4.5",
"solhint": "^2.0.0",
"standard": "^12.0.1",
"truffle-hdwallet-provider": "1.0.6"
},
"standard": {
"globals": [
"after",
"artifacts",
"assert",
"before",
"beforeEach",
"BigNumber",
"contract",
"describe",
"it",
"web3"
]
}
}