2014-11-05 17:46:01 +00:00
|
|
|
{
|
2015-04-07 02:39:47 +00:00
|
|
|
"name": "web3",
|
2014-11-05 17:46:01 +00:00
|
|
|
"namespace": "ethereum",
|
2015-06-30 11:07:28 +00:00
|
|
|
"version": "0.7.1",
|
2015-04-02 16:37:13 +00:00
|
|
|
"description": "Ethereum JavaScript API, middleware to talk to a ethereum node over RPC",
|
2014-11-05 17:46:01 +00:00
|
|
|
"main": "./index.js",
|
|
|
|
"directories": {
|
2014-11-06 20:51:37 +00:00
|
|
|
"lib": "./lib"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2015-04-10 10:22:45 +00:00
|
|
|
"bignumber.js": "debris/bignumber.js#master",
|
2015-05-16 13:42:48 +00:00
|
|
|
"crypto-js": "^3.1.4",
|
2015-02-16 21:49:26 +00:00
|
|
|
"xmlhttprequest": "*"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
2015-03-16 08:08:29 +00:00
|
|
|
"browser": {
|
2015-06-26 10:57:43 +00:00
|
|
|
"xmlhttprequest": "./lib/utils/browser-xhr.js"
|
2015-03-16 08:08:29 +00:00
|
|
|
},
|
2014-11-05 17:46:01 +00:00
|
|
|
"devDependencies": {
|
2015-06-25 09:50:22 +00:00
|
|
|
"bower": ">=1.4.1",
|
2015-06-10 10:14:44 +00:00
|
|
|
"browserify": ">=10.0",
|
2015-06-25 09:50:22 +00:00
|
|
|
"chai": "^3.0.0",
|
2015-02-17 11:11:57 +00:00
|
|
|
"coveralls": "^2.11.2",
|
2015-06-25 09:50:22 +00:00
|
|
|
"del": ">=1.2.0",
|
2015-06-10 10:14:44 +00:00
|
|
|
"exorcist": "^0.4.0",
|
2015-06-25 09:50:22 +00:00
|
|
|
"gulp": ">=3.9.0",
|
2014-11-05 22:44:40 +00:00
|
|
|
"gulp-jshint": ">=1.5.0",
|
|
|
|
"gulp-rename": ">=1.2.0",
|
2015-03-12 16:28:33 +00:00
|
|
|
"gulp-replace": "^0.5.3",
|
2015-02-17 11:11:57 +00:00
|
|
|
"gulp-streamify": "0.0.5",
|
2015-06-25 09:50:22 +00:00
|
|
|
"gulp-uglify": ">=1.2.0",
|
2015-02-17 11:11:57 +00:00
|
|
|
"istanbul": "^0.3.5",
|
2014-11-06 20:51:37 +00:00
|
|
|
"jshint": ">=2.5.0",
|
2015-02-16 21:49:26 +00:00
|
|
|
"mocha": ">=2.1.0",
|
2015-06-25 09:50:22 +00:00
|
|
|
"sandboxed-module": "^2.0.2",
|
|
|
|
"vinyl-source-stream": "^1.1.0"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "gulp",
|
|
|
|
"watch": "gulp watch",
|
2015-03-11 09:25:04 +00:00
|
|
|
"lint": "jshint *.js lib",
|
2015-02-16 21:49:26 +00:00
|
|
|
"test": "mocha",
|
2015-06-25 09:50:22 +00:00
|
|
|
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-04-09 22:22:46 +00:00
|
|
|
"url": "https://github.com/ethereum/web3.js.git"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
2015-04-09 22:22:46 +00:00
|
|
|
"homepage": "https://github.com/ethereum/web3.js",
|
2014-11-05 17:46:01 +00:00
|
|
|
"bugs": {
|
2015-04-09 22:22:46 +00:00
|
|
|
"url": "https://github.com/ethereum/web3.js/issues"
|
2014-11-05 17:46:01 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"ethereum",
|
|
|
|
"javascript",
|
|
|
|
"API"
|
|
|
|
],
|
2014-11-05 18:12:21 +00:00
|
|
|
"author": "ethdev.com",
|
2014-11-05 17:46:01 +00:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Marek Kotewicz",
|
|
|
|
"email": "marek@ethdev.com",
|
|
|
|
"url": "https://github.com/debris"
|
|
|
|
},
|
2015-07-06 15:19:21 +00:00
|
|
|
{
|
|
|
|
"name": "Fabian Vogelsteller",
|
|
|
|
"email": "fabian@ethdev.com",
|
|
|
|
"homepage": "http://frozeman.de"
|
|
|
|
},
|
2014-11-05 17:46:01 +00:00
|
|
|
{
|
|
|
|
"name": "Marian Oancea",
|
2014-11-10 12:31:51 +00:00
|
|
|
"email": "marian@ethdev.com",
|
2014-11-05 17:46:01 +00:00
|
|
|
"url": "https://github.com/cubedro"
|
2015-02-20 11:40:09 +00:00
|
|
|
},
|
2015-03-27 08:01:10 +00:00
|
|
|
{
|
|
|
|
"name": "Gav Wood",
|
|
|
|
"email": "g@ethdev.com",
|
|
|
|
"homepage": "http://gavwood.com"
|
2015-07-06 15:19:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jeffery Wilcke",
|
|
|
|
"email": "jeff@ethdev.com",
|
|
|
|
"url": "https://github.com/obscuren"
|
2014-11-05 17:46:01 +00:00
|
|
|
}
|
|
|
|
],
|
2014-11-05 18:12:21 +00:00
|
|
|
"license": "LGPL-3.0"
|
2014-11-05 17:46:01 +00:00
|
|
|
}
|