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.
74 lines
1.4 KiB
74 lines
1.4 KiB
7 years ago
|
{
|
||
|
"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": {
|
||
|
"remix-lib": "latest",
|
||
|
"standard": "^10.0.3",
|
||
|
"web3": "1.0.0-beta.27"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "standard"
|
||
|
},
|
||
|
"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"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|