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.
71 lines
1.6 KiB
71 lines
1.6 KiB
7 years ago
|
{
|
||
|
"name": "remix-tests",
|
||
5 years ago
|
"version": "0.1.33",
|
||
5 years ago
|
"description": "Tool to test Solidity smart contracts",
|
||
6 years ago
|
"main": "./dist/index.js",
|
||
|
"types": "./dist/index.d.ts",
|
||
7 years ago
|
"contributors": [
|
||
|
{
|
||
|
"name": "Iuri Matias",
|
||
7 years ago
|
"email": "iuri@ethereum.org"
|
||
7 years ago
|
},
|
||
|
{
|
||
|
"name": "Yann Levreau",
|
||
|
"email": "yann@ethdev.com"
|
||
|
}
|
||
|
],
|
||
7 years ago
|
"bin": {
|
||
|
"remix-tests": "./bin/remix-tests"
|
||
|
},
|
||
7 years ago
|
"scripts": {
|
||
6 years ago
|
"build": "tsc",
|
||
6 years ago
|
"test": "tsc && mocha --require ts-node/register tests/*.ts -t 300000",
|
||
|
"prepublish": "npm run build"
|
||
7 years ago
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
5 years ago
|
"url": "git+https://github.com/ethereum/remix/tree/master/remix-tests"
|
||
7 years ago
|
},
|
||
7 years ago
|
"author": "Remix Team",
|
||
6 years ago
|
"license": "MIT",
|
||
7 years ago
|
"bugs": {
|
||
5 years ago
|
"url": "https://github.com/ethereum/remix/issues"
|
||
7 years ago
|
},
|
||
7 years ago
|
"standard": {
|
||
|
"ignore": [
|
||
5 years ago
|
"tests/",
|
||
|
"dist/"
|
||
7 years ago
|
]
|
||
|
},
|
||
5 years ago
|
"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",
|
||
5 years ago
|
"web3": "^1.2.4",
|
||
6 years ago
|
"winston": "^3.0.0"
|
||
7 years ago
|
},
|
||
6 years ago
|
"peerDependencies": {
|
||
5 years ago
|
"yo-yoify": "^4.3.0"
|
||
6 years ago
|
},
|
||
7 years ago
|
"devDependencies": {
|
||
5 years ago
|
"@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",
|
||
6 years ago
|
"@types/commander": "^2.12.2",
|
||
6 years ago
|
"@types/mocha": "^5.2.5",
|
||
|
"@types/node": "^10.12.21",
|
||
6 years ago
|
"@types/web3": "^1.0.18",
|
||
6 years ago
|
"mocha": "^5.1.0",
|
||
|
"standard": "^10.0.3",
|
||
|
"ts-node": "^8.0.2",
|
||
|
"typescript": "^3.3.1"
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|