{ "name": "remix-debug", "version": "0.0.4", "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", "devDependencies": { "babel-eslint": "^7.1.1", "babel-plugin-transform-object-assign": "^6.22.0", "babel-plugin-yo-yoify": "^0.3.3", "babel-polyfill": "^6.22.0", "babel-preset-env": "^1.6.1", "babel-preset-es2015": "^6.24.0", "babel-preset-stage-0": "^6.24.1", "babelify": "^7.3.0", "ethereumjs-util": "^4.5.0", "ethereumjs-vm": "^2.3.3", "notify-error": "^1.2.0", "npm-run-all": "^4.1.2", "remix-core": "^0.0.10", "remix-lib": "^0.2.4", "remix-solidity": "^0.1.6", "solc": "https://github.com/ethereum/solc-js", "standard": "^7.0.1", "standard-reporter": "^1.0.5", "tape": "^4.6.0" }, "scripts": { "build": "mkdirp build; browserify index.js > build/app.js", "lint": "standard | notify-error", "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..", "test": "standard && npm run downloadsolc && 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/*" ] }, "babel": { "plugins": [ "transform-es2015-template-literals", "transform-es2015-literals", "transform-es2015-function-name", "transform-es2015-arrow-functions", "transform-es2015-block-scoped-functions", "transform-es2015-classes", "transform-es2015-object-super", "transform-es2015-shorthand-properties", "transform-es2015-duplicate-keys", "transform-es2015-computed-properties", "transform-es2015-for-of", "transform-es2015-sticky-regex", "transform-es2015-unicode-regex", "check-es2015-constants", "transform-es2015-spread", "transform-es2015-parameters", "transform-es2015-destructuring", "transform-es2015-block-scoping", "transform-object-assign" ] }, "browserify": { "transform": [ [ "babelify", { "sourceMapsAbsolute": false, "sourceMaps": true, "plugins": [ [ "transform-object-assign" ] ], "presets": [ "es2015" ] } ] ] } }