@vporton/future-contracts
Version:
Ethereum accounts bid on future financing (essentially, transfer money from the future) - smart contracts
81 lines (80 loc) • 2.23 kB
JSON
{
"name": "@vporton/future-contracts",
"version": "1.5.2",
"description": "Ethereum accounts bid on future financing (essentially, transfer money from the future) - smart contracts",
"scripts": {
"lint": "eslint .",
"develop": "truffle develop",
"compile": "truffle compile",
"migrate": "truffle migrate",
"networks": "truffle networks",
"test": "truffle test",
"lint-contracts": "solium -d contracts/",
"injectnetinfo": "tnt iN",
"extractnetinfo": "tnt eN",
"resetnetinfo": "truffle networks --clean && tnt iN",
"prepack": "truffle compile --network local"
},
"keywords": [
"Ethereum",
"Gnosis",
"Prediction-Market",
"Solidity",
"Truffle",
"Future",
"Science",
"Free software",
"Donations",
"Crowdfunding"
],
"author": "Victor Porton (https://portonvictor.org)",
"license": "LGPL-3.0",
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@vporton/safe-bequest-module": "^0.0.1",
"abdk-libraries-solidity": "^2.4.0"
},
"devDependencies": {
"@codechecks/client": "^0.1.9",
"@gnosis.pm/safe-contracts": "github:gnosis/safe-contracts",
"@gnosis.pm/truffle-nice-tools": "^1.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eth-gas-reporter": "^0.2.11",
"eth-sig-util": "^2.4.4",
"ethlint": "^1.2.4",
"husky": "^4.0.2",
"lint-staged": "^9.2.5",
"lodash": "^4.17.15",
"npm-prepublish": "^1.2.3",
"openzeppelin-test-helpers": "^0.5.0",
"prettier": "1.19.1",
"run-with-testrpc": "^0.3.1",
"truffle": "^5.0.36",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^2.0.0-alpha.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vporton/future-contracts.git"
},
"bugs": {
"url": "https://github.com/vporton/future-contracts/issues"
},
"homepage": "https://github.com/vporton/future-contracts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}