Use npm for building / dependency management.
Showing
This diff is collapsed.
index.js
deleted
100644 → 0
{ | { | ||
"name": "solc", | "name": "browser-solidity", | ||
"version": "0.3.1-1", | "version": "1.0.0", | ||
"description": "Solidity compiler", | "description": "Minimalistic browser-based Solidity IDE", | ||
"main": "index.js", | |||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | "test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "mkdir -p build; browserify src/index.js -o build/app.js" | |||
}, | |||
"devDependencies": { | |||
"ethereumjs-vm": "^1.3.0", | |||
"merkle-patricia-tree": "^2.1.2", | |||
"ethereumjs-util": "^4.4.0", | |||
"ethereumjs-tx": "^1.1.1", | |||
"ethereumjs-account": "^2.0.2", | |||
"ethereumjs-abi": "^0.6.0", | |||
"web3": "^0.15.3", | |||
"jquery": "^2.2.0", | |||
"brace": "^0.8.0", | |||
"browserify": "^13.0.0", | |||
"js-base64": "^2.1.9" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
"url": "git+https://github.com/chriseth/browser-solidity.git" | "url": "git+https://github.com/ethereum/browser-solidity.git" | ||
}, | }, | ||
"keywords": [ | "keywords": [ | ||
"ethereum", | "ethereum", | ||
... | @@ -18,7 +31,7 @@ | ... | @@ -18,7 +31,7 @@ |
"author": "chriseth", | "author": "chriseth", | ||
"license": "MIT", | "license": "MIT", | ||
"bugs": { | "bugs": { | ||
"url": "https://github.com/chriseth/browser-solidity/issues" | "url": "https://github.com/ethereum/browser-solidity/issues" | ||
}, | }, | ||
"homepage": "https://github.com/chriseth/browser-solidity#readme" | "homepage": "https://github.com/ethereum/browser-solidity#readme" | ||
} | } |
src/index.js
0 → 100644
src/web3-adapter.js
0 → 100644
Please
register
or
sign in
to comment