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

65 lines
2.0 KiB

{
"name": "browser-solidity",
"version": "1.0.0",
"description": "Minimalistic browser-based Solidity IDE",
"scripts": {
"test": "node test/index.js",
"browser-test": "nightwatch --config nightwatch.js --env local",
"browser-test-remote-firefox": "nightwatch --config nightwatch.js --env default",
"browser-test-remote-ie": "nightwatch --config nightwatch.js --env ie",
"browser-test-remote-chrome": "nightwatch --config nightwatch.js --env chrome",
"browser-test-remote-safari": "nightwatch --config nightwatch.js --env safari",
"build": "mkdir -p build; browserify src/index.js -g yo-yoify -o build/app.js",
"downloadsolc": "rm soljson.js; wget https://ethereum.github.io/solc-bin/soljson.js",
"lint": "semistandard",
"serve": "http-server ."
},
"devDependencies": {
"brace": "^0.8.0",
"browserify": "^13.0.0",
"es6-shim": "^0.35.1",
"ethereumjs-abi": "^0.6.2",
"ethereumjs-block": "^1.2.2",
"ethereumjs-tx": "^1.1.1",
"ethereumjs-util": "^4.4.0",
"ethereumjs-vm": "^1.4.0",
"http-server": "0.9.0",
"jquery": "^2.2.0",
"js-base64": "^2.1.9",
"nightwatch": "^0.9.3",
"semistandard": "^7.0.0",
"semver": "^5.3.0",
"solc": "https://github.com/ethereum/solc-js",
"tape": "^4.5.1",
"web3": "^0.16.0",
"webworkify": "^1.2.1",
"yo-yo": "^1.2.2",
"yo-yoify": "^3.3.0",
"ethereum-remix": "0.0.2-alpha.0.0.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/browser-solidity.git"
},
"keywords": [
"ethereum",
"solidity",
"compiler"
],
"author": "chriseth",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/browser-solidity/issues"
},
"homepage": "https://github.com/ethereum/browser-solidity#readme",
"private": true,
"semistandard": {
"ignore": [
"assets/js/",
"build/",
"src/mode-solidity.js",
"nightwatch.js",
"ci/sauceDisconnect.js"
]
}
}