forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converted to npm package Added brower Added browserify with minification Updated Readme
- Loading branch information
Showing
24 changed files
with
1,785 additions
and
653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"directory": "example/js/", | ||
"cwd": "./", | ||
"analytics": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,7 @@ | |
*/**/.DS_Store | ||
ethereum/ethereum | ||
ethereal/ethereal | ||
|
||
example/js | ||
node_modules | ||
bower_components | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"predef": [ | ||
"console", | ||
"require", | ||
"equal", | ||
"test", | ||
"testBoth", | ||
"testWithDefault", | ||
"raises", | ||
"deepEqual", | ||
"start", | ||
"stop", | ||
"ok", | ||
"strictEqual", | ||
"module", | ||
"expect", | ||
"reject", | ||
"impl" | ||
], | ||
|
||
"esnext": true, | ||
"proto": true, | ||
"node" : true, | ||
"browser" : true, | ||
"browserify" : true, | ||
|
||
"boss" : true, | ||
"curly": false, | ||
"debug": true, | ||
"devel": true, | ||
"eqeqeq": true, | ||
"evil": true, | ||
"forin": false, | ||
"immed": false, | ||
"laxbreak": false, | ||
"newcap": true, | ||
"noarg": true, | ||
"noempty": false, | ||
"nonew": false, | ||
"nomen": false, | ||
"onevar": false, | ||
"plusplus": false, | ||
"regexp": false, | ||
"undef": true, | ||
"sub": true, | ||
"strict": false, | ||
"white": false, | ||
"shadow": true, | ||
"eqnull": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
# before_script: | ||
# - npm install | ||
# - gulp build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
This file is part of ethereum.js. | ||
|
||
ethereum.js is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
ethereum.js is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public License | ||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name": "ethereum.js", | ||
"namespace": "ethereum", | ||
"version": "0.0.1", | ||
"description": "Ethereum Compatible JavaScript API", | ||
"main": "dist/ethereum.js", | ||
"dependencies": { | ||
"es6-promise": "#master" | ||
}, | ||
"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": "Marek Kotewicz", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/debris" | ||
}, | ||
{ | ||
"name": "Marian Oancea", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/cubedro" | ||
} | ||
], | ||
"license": "LGPL-3.0", | ||
"ignore": [ | ||
"example", | ||
"lib", | ||
"node_modules", | ||
"package.json", | ||
".editorconfig", | ||
".gitignore", | ||
".jshintrc", | ||
".travis.yml", | ||
"*.js", | ||
"**/*.txt" | ||
] | ||
} |
Oops, something went wrong.