web3.js/package.json

93 lines
2.3 KiB
JSON
Raw Normal View History

{
2015-04-06 19:39:47 -07:00
"name": "web3",
"namespace": "ethereum",
2015-04-16 03:58:01 -07:00
"version": "0.2.8",
2015-04-02 09:37:13 -07:00
"description": "Ethereum JavaScript API, middleware to talk to a ethereum node over RPC",
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
"bignumber.js": "debris/bignumber.js#master",
2015-02-16 13:49:26 -08:00
"xmlhttprequest": "*"
},
"browser": {
"xmlhttprequest": "./lib/utils/browser-xhr.js"
},
"devDependencies": {
"bower": ">=1.3.0",
2014-11-05 14:44:40 -08:00
"browserify": ">=6.0",
2015-03-07 10:18:22 -08:00
"chai": "^2.1.1",
2015-02-17 03:11:57 -08:00
"coveralls": "^2.11.2",
"del": ">=0.1.1",
"exorcist": "^0.1.6",
2014-11-05 14:49:50 -08:00
"gulp": ">=3.4.0",
2014-11-05 14:44:40 -08:00
"gulp-jshint": ">=1.5.0",
"gulp-rename": ">=1.2.0",
"gulp-replace": "^0.5.3",
2015-02-17 03:11:57 -08:00
"gulp-streamify": "0.0.5",
2014-11-05 14:44:40 -08:00
"gulp-uglify": ">=1.0.0",
2015-02-17 03:11:57 -08:00
"istanbul": "^0.3.5",
"jshint": ">=2.5.0",
"karma": "^0.12.31",
"karma-browserify": "^4.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-safari-launcher": "^0.1.1",
2015-02-16 13:49:26 -08:00
"mocha": ">=2.1.0",
"sandboxed-module": "^2.0.0",
2015-02-17 03:11:57 -08:00
"vinyl-source-stream": "^1.0.0"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
2015-03-11 02:25:04 -07:00
"lint": "jshint *.js lib",
2015-02-16 13:49:26 -08:00
"test": "mocha",
2015-03-06 01:06:50 -08:00
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose",
2015-03-06 12:37:44 -08:00
"karma": "./node_modules/karma/bin/karma start --singleRun=true --browsers=\"Firefox\""
},
"repository": {
"type": "git",
2015-04-09 15:22:46 -07:00
"url": "https://github.com/ethereum/web3.js.git"
},
2015-04-09 15:22:46 -07:00
"homepage": "https://github.com/ethereum/web3.js",
"bugs": {
2015-04-09 15:22:46 -07:00
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"ethereum",
"javascript",
"API"
],
2014-11-05 10:12:21 -08:00
"author": "ethdev.com",
"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@ethdev.com",
"url": "https://github.com/cubedro"
},
{
"name": "Fabian Vogelsteller",
2015-03-12 13:38:54 -07:00
"email": "fabian@frozeman.de",
"homepage": "http://frozeman.de"
2015-03-27 01:01:10 -07:00
},
{
"name": "Gav Wood",
"email": "g@ethdev.com",
"homepage": "http://gavwood.com"
}
],
2014-11-05 10:12:21 -08:00
"license": "LGPL-3.0"
}