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

85 lines
1.9 KiB

7 years ago
{
"name": "remix-solidity",
"version": "0.3.20",
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": {
"remix-lib": "0.4.17",
"solc": "^0.5.13",
"webworkify": "^1.2.1"
7 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": "^10.0.0",
5 years ago
"babelify": "^10.0.0",
"standard": "^7.0.1",
"tape": "^4.6.0"
},
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/tree/master/remix-solidity"
7 years ago
},
"author": "cpp-ethereum team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix/issues"
},
"homepage": "https://github.com/ethereum/remix/tree/master/remix-solidity#readme",
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
]
}
]
]
}
}