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

80 lines
1.6 KiB

{
"name": "remix-simulator",
"version": "0.0.1",
"description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri@ethereum.org"
},
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
}
],
"main": "./index.js",
"dependencies": {
7 years ago
"body-parser": "^1.18.2",
"express": "^4.16.3",
7 years ago
"fancy-log": "^1.3.2",
"remix-lib": "latest",
"standard": "^10.0.3",
"web3": "1.0.0-beta.27"
},
"scripts": {
"test": "standard"
},
7 years ago
"bin": {
"ethsim": "./bin/ethsim",
"remix-simulator": "./bin/ethsim"
},
"standard": {
"ignore": [
"node_modules/*"
],
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix.git"
},
"author": "remix team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix/issues"
},
"homepage": "https://github.com/ethereum/remix#readme",
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"es2017"
]
}
]
]
}
}