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

71 lines
1.6 KiB

7 years ago
{
"name": "remix-tests",
5 years ago
"version": "0.1.33",
"description": "Tool to test Solidity smart contracts",
"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": "tsc && mocha --require ts-node/register tests/*.ts -t 300000",
"prepublish": "npm run build"
7 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix/tree/master/remix-tests"
7 years ago
},
7 years ago
"author": "Remix Team",
"license": "MIT",
7 years ago
"bugs": {
"url": "https://github.com/ethereum/remix/issues"
7 years ago
},
"standard": {
"ignore": [
"tests/",
"dist/"
]
},
"homepage": "https://github.com/ethereum/remix/tree/master/remix-tests#readme",
7 years ago
"dependencies": {
7 years ago
"async": "^2.6.0",
7 years ago
"change-case": "^3.0.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
5 years ago
"remix-lib": "0.4.29",
"remix-simulator": "0.1.9-beta.5",
"remix-solidity": "0.3.30",
5 years ago
"signale": "^1.4.0",
"web3": "^1.2.4",
"winston": "^3.0.0"
},
"peerDependencies": {
"yo-yoify": "^4.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
6 years ago
"@types/async": "^2.4.0",
"@types/color-support": "^1.1.0",
6 years ago
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
6 years ago
"@types/web3": "^1.0.18",
"mocha": "^5.1.0",
"standard": "^10.0.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
7 years ago
}
7 years ago
}