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

102 lines
3.3 KiB

{
8 years ago
"name": "ethereum-remix",
8 years ago
"version": "0.0.2-alpha.0.0.9",
"description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
},
{
"name": "Liana Husikyan",
"email": "liana@ethdev.com"
}
],
"main": "./src/index.js",
8 years ago
"dependencies": {
"which": "^1.2.10"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
8 years ago
"browserify": "^13.0.1",
8 years ago
"ethereum-common": "0.0.18",
"ethereumjs-block": "^1.2.2",
"ethereumjs-tx": "^1.1.1",
8 years ago
"ethereumjs-util": "^4.5.0",
"ethereumjs-vm": "^2.0.1",
"fast-async": "^6.1.2",
"http-server": "^0.9.0",
8 years ago
"nightwatch": "^0.9.5",
"selenium-standalone": "^6.0.1",
"solc": "^0.4.3",
"standard": "^7.0.1",
9 years ago
"standard-reporter": "^1.0.5",
8 years ago
"tape": "^4.6.0",
8 years ago
"web3": "^0.15.3",
"yo-yo": "^1.2.1",
"yo-yoify": "^3.1.0"
},
"scripts": {
"build": "mkdirp build; browserify src/index.js > build/app.js",
"lint": "standard | notify-error",
8 years ago
"nightwatch_local": "nightwatch --config nightwatch.js --env local",
"nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome",
"nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default",
"nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie",
8 years ago
"nightwatch_remote_parallel": "nightwatch --config nightwatch.js --env ie,safari,chrome,default",
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari",
"onchange": "onchange build/app.js -- npm run lint",
"prepublish": "npm run build && selenium-standalone install",
"selenium": "selenium-standalone start",
"serve": "http-server .",
"start": "./runNode.sh",
"start_dev": "npm-run-all -lpr serve watch onchange",
"start_eth": "npm run warning_message; eth -j --rpccorsdomain '*'",
"start_geth": "npm run warning_message; geth --rpc --rpcapi 'web3,eth,debug' --rpcport 8545 --rpccorsdomain '*'",
"test": "standard; tape ./test/tests.js",
"test-browser": "npm-run-all -lpr selenium serve waittest",
"waittest": "sleep 5 && npm run nightwatch_local",
"warning_message": "echo 'DO NOT DO THIS IF eth/geth STORES PRIVATE KEYS!! External system might be able to access your node through the RPC server.\n\n';",
"watch": "mkdirp build; watchify src/index.js -p [ browserify-livereload --host 127.0.0.1 --port 1337 ] -dv -o build/app.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"
},
9 years ago
"homepage": "https://github.com/ethereum/remix#readme",
"standard": {
9 years ago
"ignore": [
"node_modules/*",
9 years ago
"build/*",
9 years ago
"test/resources/*"
],
"parser": "babel-eslint"
},
"browserify": {
"transform": [
["babelify", {
"plugins": [
["fast-async", {
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}]
]
}],
["yo-yoify"],
["babelify", { "presets": ["es2015"] }]
]
9 years ago
}
}