remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/package.json

48 lines
1.1 KiB

7 years ago
{
"name": "remix-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
7 years ago
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri.matias@gmail.com"
},
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
}
],
7 years ago
"scripts": {
"downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget https://ethereum.github.io/solc-bin/soljson.js) && cd ..",
7 years ago
"prepublish": "npm-run-all -ls downloadsolc",
"lint": "standard",
"test": "standard && mocha tests/ -t 300000"
7 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-tests.git"
},
7 years ago
"author": "Remix Team",
7 years ago
"license": "ISC",
"bugs": {
"url": "https://github.com/ethereum/remix-tests/issues"
},
"standard": {
"ignore": [
"tests/"
]
},
7 years ago
"homepage": "https://github.com/ethereum/remix-tests#readme",
"dependencies": {
"change-case": "^3.0.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
"ethereumjs-vm": "^2.3.2",
"remix-lib": "latest",
"remix-solidity": "latest",
7 years ago
"standard": "^10.0.3",
7 years ago
"web3": "^1.0.0-beta.27"
}
7 years ago
}