-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "eip2019",
"version": "1.0.0",
"description": "An extension to the ERC-20 standard token that allows Token wallet owners to request a wallet to be funded, by calling the smart contract and attaching a fund instruction string.",
"main": "truffle-config.js",
"dependencies": {
"openzeppelin-solidity": "^2.3.0"
},
"devDependencies": {
"ethlint": "^1.2.4",
"ganache-cli": "^6.5.0",
"randomstring": "^1.1.5",
"solc": "0.5.10",
"solidity-coverage": "^0.6.3",
"truffle": "^5.0.28",
"truffle-assertions": "^0.9.1"
},
"scripts": {
"coverage": "solidity-coverage",
"lint": "solium -d contracts --fix",
"test": "scripts/executeTests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IoBuilders/fundable-token.git"
},
"keywords": [
"eip",
"erc",
"fundable",
"solidity",
"ethereum",
"eth"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IoBuilders/fundable-token/issues"
},
"homepage": "https://github.com/IoBuilders/fundable-token#readme"
}