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/remix-tests/package.json

65 lines
1.4 KiB

7 years ago
{
"name": "remix-tests",
"version": "0.1.1",
"description": "Tests for the Ethereum tool suite Remix",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
7 years ago
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri@ethereum.org"
7 years ago
},
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
}
],
"bin": {
"remix-tests": "./bin/remix-tests"
},
7 years ago
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register tests/*.ts -t 300000"
7 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-tests.git"
},
7 years ago
"author": "Remix Team",
"license": "MIT",
7 years ago
"bugs": {
"url": "https://github.com/ethereum/remix-tests/issues"
},
"standard": {
"ignore": [
"tests/"
]
},
7 years ago
"homepage": "https://github.com/ethereum/remix-tests#readme",
"dependencies": {
"@types/async": "^2.4.0",
7 years ago
"async": "^2.6.0",
7 years ago
"change-case": "^3.0.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
"remix-lib": "0.4.1",
"remix-simulator": "0.1.1",
"remix-solidity": "0.3.1",
"signale": "^1.2.1",
"web3": "1.0.0-beta.36",
"winston": "^3.0.0"
},
"peerDependencies": {
"yo-yoify": "latest"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"babel-preset-es2017": "^6.24.1",
"mocha": "^5.1.0",
"standard": "^10.0.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
7 years ago
}
7 years ago
}