mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 11:38:12 +00:00
* started contract * prepared the contract functions * added deploy function * added event emitter funcitons * eventified promise * added encodeABI * added optional bluebird * improved the param finder * added call, transact and estimateGas * allow siganture for encodeABI * working on events * added event listeners to contracts * working on contract events * changed on message to on data * working on decoding events * switched deploy check to subscriptions * removed all event functions, keep only contract.on * added subscription stuff * fixed substractions formatters * added log decoding * added all events * fixed events * added new method calling structure * added mined event for send tx * worked on getPastEvents, still WIP * working on tests * added once method * made options object in function execution optional * finished pastEvents * added request function for batch processing to contract methods * fixed contract tests * finished proting tests * test provider isolatiton issues * commented out test to prevent unsolvable issue for now * changed deploy resolve * deactivate encodeABI * improved fake provider, with stacking validation and results * added fromBlock test * added tests for internal methods of the contract object
91 lines
2.2 KiB
JSON
91 lines
2.2 KiB
JSON
{
|
|
"name": "web3",
|
|
"namespace": "ethereum",
|
|
"version": "1.0.0",
|
|
"description": "Ethereum JavaScript API, middleware to talk to a ethereum node over RPC",
|
|
"main": "./index.js",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"browser": {
|
|
"xmlhttprequest": "./lib/utils/browser-xhr.js"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "^3.3.1",
|
|
"bignumber.js": "git+https://github.com/debris/bignumber.js.git#94d7146671b9719e00a09c29b01a691bc85048c2",
|
|
"crypto-js": "^3.1.4",
|
|
"eventemitter3": "^1.1.1",
|
|
"utf8": "^2.1.1",
|
|
"websocket": "^1.0.23",
|
|
"xmlhttprequest": "*"
|
|
},
|
|
"devDependencies": {
|
|
"bower": ">=1.4.1",
|
|
"browserify": ">=10.0",
|
|
"chai": "^3.0.0",
|
|
"coveralls": "^2.11.2",
|
|
"del": ">=2.0.2",
|
|
"exorcist": "^0.4.0",
|
|
"gulp": ">=3.9.0",
|
|
"gulp-jshint": ">=1.5.0",
|
|
"gulp-rename": ">=1.2.0",
|
|
"gulp-replace": "^0.5.3",
|
|
"gulp-streamify": "0.0.5",
|
|
"gulp-uglify": ">=1.2.0",
|
|
"istanbul": "^0.3.5",
|
|
"jshint": ">=2.5.0",
|
|
"mocha": ">=2.3.3",
|
|
"sandboxed-module": "^2.0.2",
|
|
"vinyl-source-stream": "^1.1.0"
|
|
},
|
|
"scripts": {
|
|
"build": "gulp",
|
|
"watch": "gulp watch",
|
|
"lint": "jshint *.js lib",
|
|
"test": "mocha",
|
|
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ethereum/web3.js.git"
|
|
},
|
|
"homepage": "https://github.com/ethereum/web3.js",
|
|
"bugs": {
|
|
"url": "https://github.com/ethereum/web3.js/issues"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"javascript",
|
|
"API"
|
|
],
|
|
"author": "ethdev.com",
|
|
"authors": [
|
|
{
|
|
"name": "Marek Kotewicz",
|
|
"email": "marek@ethdev.com",
|
|
"url": "https://github.com/debris"
|
|
},
|
|
{
|
|
"name": "Fabian Vogelsteller",
|
|
"email": "fabian@ethdev.com",
|
|
"homepage": "http://frozeman.de"
|
|
},
|
|
{
|
|
"name": "Marian Oancea",
|
|
"email": "marian@ethdev.com",
|
|
"url": "https://github.com/cubedro"
|
|
},
|
|
{
|
|
"name": "Gav Wood",
|
|
"email": "g@ethdev.com",
|
|
"homepage": "http://gavwood.com"
|
|
},
|
|
{
|
|
"name": "Jeffery Wilcke",
|
|
"email": "jeff@ethdev.com",
|
|
"url": "https://github.com/obscuren"
|
|
}
|
|
],
|
|
"license": "LGPL-3.0"
|
|
}
|