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.
93 lines
2.0 KiB
93 lines
2.0 KiB
7 years ago
|
{
|
||
|
"name": "remix-lib",
|
||
5 years ago
|
"version": "0.4.29",
|
||
7 years ago
|
"description": "Ethereum IDE and tools for the web",
|
||
|
"contributors": [
|
||
|
{
|
||
|
"name": "Yann Levreau",
|
||
|
"email": "yann@ethdev.com"
|
||
|
},
|
||
|
{
|
||
|
"name": "Liana Husikyan",
|
||
|
"email": "liana@ethdev.com"
|
||
|
}
|
||
|
],
|
||
|
"main": "./index.js",
|
||
|
"dependencies": {
|
||
7 years ago
|
"async": "^2.1.2",
|
||
5 years ago
|
"ethereumjs-block": "^2.2.2",
|
||
|
"ethereumjs-tx": "^2.1.2",
|
||
5 years ago
|
"ethereumjs-util": "^6.2.0",
|
||
5 years ago
|
"ethereumjs-vm": "4.1.3",
|
||
5 years ago
|
"ethers": "^4.0.40",
|
||
5 years ago
|
"events": "^3.0.0",
|
||
5 years ago
|
"solc": "^0.6.0",
|
||
5 years ago
|
"web3": "^1.2.4"
|
||
7 years ago
|
},
|
||
6 years ago
|
"devDependencies": {
|
||
5 years ago
|
"@babel/core": "^7.4.5",
|
||
|
"@babel/plugin-transform-object-assign": "^7.2.0",
|
||
|
"@babel/preset-env": "^7.4.5",
|
||
|
"@babel/preset-es2015": "latest",
|
||
|
"@babel/preset-es2017": "latest",
|
||
|
"@babel/preset-stage-0": "^7.0.0",
|
||
5 years ago
|
"babel-eslint": "^7.1.1",
|
||
5 years ago
|
"babelify": "^10.0.0",
|
||
6 years ago
|
"standard": "^7.0.1",
|
||
|
"tape": "^4.6.0"
|
||
|
},
|
||
7 years ago
|
"scripts": {
|
||
|
"test": "standard && tape ./test/tests.js"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/ethereum/remix.git"
|
||
|
},
|
||
|
"author": "cpp-ethereum team",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/ethereum/remix/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/ethereum/remix#readme",
|
||
|
"standard": {
|
||
|
"ignore": [
|
||
|
"node_modules/*",
|
||
|
"build/*",
|
||
|
"test/resources/*"
|
||
6 years ago
|
],
|
||
|
"parser": "babel-eslint"
|
||
7 years ago
|
},
|
||
|
"browserify": {
|
||
|
"transform": [
|
||
|
[
|
||
|
"babelify",
|
||
|
{
|
||
|
"plugins": [
|
||
|
[
|
||
|
"fast-async",
|
||
|
{
|
||
|
"runtimePatten": null,
|
||
|
"compiler": {
|
||
|
"promises": true,
|
||
|
"es7": true,
|
||
|
"noRuntime": true,
|
||
|
"wrapAwait": true
|
||
|
}
|
||
|
}
|
||
|
],
|
||
5 years ago
|
"module:@babel/plugin-transform-object-assign"
|
||
7 years ago
|
]
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
"babelify",
|
||
|
{
|
||
|
"presets": [
|
||
5 years ago
|
"@babel/preset-env"
|
||
7 years ago
|
]
|
||
|
}
|
||
|
]
|
||
|
]
|
||
7 years ago
|
}
|
||
|
}
|