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.
85 lines
1.8 KiB
85 lines
1.8 KiB
7 years ago
|
{
|
||
|
"name": "remix-solidity",
|
||
|
"version": "0.0.2",
|
||
|
"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-preset-es2015": "^6.24.0",
|
||
|
"babel-plugin-transform-object-assign": "^6.22.0",
|
||
|
"babel-eslint": "^7.1.1",
|
||
|
"babelify": "^7.3.0",
|
||
|
"ethereumjs-util": "^4.5.0",
|
||
|
"ethereumjs-vm": "2.3.1",
|
||
|
"fast-async": "^6.1.2",
|
||
|
"npm-link-local": "^1.1.0",
|
||
|
"remix-core": "^0.0.1",
|
||
|
"remix-lib": "^0.0.1",
|
||
|
"solc": "^0.4.13",
|
||
|
"standard": "^7.0.1",
|
||
|
"tape": "^4.6.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"postinstall": "npm-link-local ../remix-lib && npm-link-local ../remix-core",
|
||
|
"test": "standard && tape ./test/tests.js"
|
||
|
},
|
||
|
"standard": {
|
||
|
"ignore": [
|
||
|
"node_modules/*",
|
||
|
"build/*"
|
||
|
],
|
||
|
"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"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
}
|
||
|
}
|