Converted to node module
Converted to npm package Added brower Added browserify with minification Updated Readme
Showing
.bowerrc
0 → 100644
.editorconfig
0 → 100644
.jshintrc
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
bower.json
0 → 100644
dist/ethereum.js
0 → 100644
This diff is collapsed.
dist/ethereum.min.js
0 → 100644
example/node-app.js
0 → 100644
gulpfile.js
0 → 100644
index.js
0 → 100644
lib/browser_fix/xhr.js
0 → 100644
lib/index.js
0 → 100644
lib/main.js
0 → 100644
This diff is collapsed.
main.js
deleted
100644 → 0
This diff is collapsed.
package.json
0 → 100644
| { | |||
| "name": "ethereum.js", | |||
| "namespace": "ethereum", | |||
| "version": "0.0.1", | |||
| "description": "Ethereum Compatible JavaScript API", | |||
| "main": "./index.js", | |||
| "directories": { | |||
| "lib": "./lib" | |||
| }, | |||
| "dependencies": { | |||
| "es6-promise": "*", | |||
| "ws": "^0.4.32", | |||
| "xmlhttprequest": "^1.6.0" | |||
| }, | |||
| "devDependencies": { | |||
| "bower": "^1.3.12", | |||
| "browserify": "6.x", | |||
| "del": "^0.1.3", | |||
| "gulp": "3.8.x", | |||
| "gulp-browserify-thin": "^0.1.5", | |||
| "gulp-jshint": "^1.9.0", | |||
| "gulp-rename": "^1.2.0", | |||
| "gulp-uglify": "^1.0.1", | |||
| "jshint": "2.5.x" | |||
| }, | |||
| "scripts": { | |||
| "build": "gulp", | |||
| "watch": "gulp watch", | |||
| "lint": "jshint lib" | |||
| }, | |||
| "browser": { | |||
| "xmlhttprequest": "./lib/browser_fix/xhr.js" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://github.com/ethereum/ethereum.js.git" | |||
| }, | |||
| "bugs": { | |||
| "url": "https://github.com/ethereum/ethereum.js/issues" | |||
| }, | |||
| "keywords": [ | |||
| "ethereum", | |||
| "javascript", | |||
| "API" | |||
| ], | |||
| "authors": [ | |||
| { | |||
| "name": "Jeffery Wilcke", | |||
| "email": "jeff@ethdev.com", | |||
| "url": "https://github.com/obscuren" | |||
| }, | |||
| { | |||
| "name": "Marek Kotewicz", | |||
| "email": "marek@ethdev.com", | |||
| "url": "https://github.com/debris" | |||
| }, | |||
| { | |||
| "name": "Marian Oancea", | |||
| "email": "marian.oancea@gmail.com", | |||
| "url": "https://github.com/cubedro" | |||
| } | |||
| ], | |||
| "license": "LGPL" | |||
| } |
Please register or sign in to comment