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

83 lines
1.7 KiB

7 years ago
{
"name": "remix-solidity",
6 years ago
"version": "0.2.14",
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": {
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
7 years ago
"babelify": "^7.3.0",
"ethereumjs-util": "^4.5.0",
"ethereumjs-vm": "2.4.0",
7 years ago
"fast-async": "^6.1.2",
"npm-run-all": "^4.0.2",
6 years ago
"remix-lib": "0.3.13",
"solc": "^0.5.0",
7 years ago
"standard": "^7.0.1",
"tape": "^4.6.0",
"webworkify": "^1.2.1"
7 years ago
},
"scripts": {
"test": "standard && tape ./test/tests.js"
7 years ago
},
"standard": {
"ignore": [
"node_modules/*"
7 years ago
],
"parser": "babel-eslint"
},
"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",
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}