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

62 lines
1.8 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": {
8 years ago
"browserify": "^13.0.1",
"ethereumjs-util": "^4.5.0",
"http-server": "^0.9.0",
8 years ago
"nightwatch": "^0.9.5",
"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",
8 years ago
"yo-yoify": "^3.1.0"
},
"scripts": {
8 years ago
"start_node": "./runNode.sh",
"start_eth": "eth -j --rpccorsdomain '*'",
"start_geth": "geth --rpc --rpcapi 'web3,eth,debug' --rpcport 8545 --rpccorsdomain '*'",
"build": "mkdir build; browserify src/index.js -g yo-yoify -o build/app.js",
9 years ago
"test": "standard && tape ./test/tests.js",
8 years ago
"serve": "http-server .",
8 years ago
"nightwatch_local": "nightwatch --config nightwatch.js --env local",
"nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default",
"nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome",
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari",
8 years ago
"nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie"
},
"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/*"
9 years ago
]
9 years ago
}
}