web3.js/package.json

87 lines
2.1 KiB
JSON
Raw Normal View History

{
2015-04-07 02:39:47 +00:00
"name": "web3",
"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",
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
"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": "*"
},
"browser": {
2015-06-26 10:57:43 +00:00
"xmlhttprequest": "./lib/utils/browser-xhr.js"
},
"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",
"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",
"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"
},
"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"
},
"repository": {
"type": "git",
2015-04-09 22:22:46 +00:00
"url": "https://github.com/ethereum/web3.js.git"
},
2015-04-09 22:22:46 +00:00
"homepage": "https://github.com/ethereum/web3.js",
"bugs": {
2015-04-09 22:22:46 +00:00
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"ethereum",
"javascript",
"API"
],
2014-11-05 18:12:21 +00:00
"author": "ethdev.com",
"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"
},
{
"name": "Marian Oancea",
"email": "marian@ethdev.com",
"url": "https://github.com/cubedro"
},
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 18:12:21 +00:00
"license": "LGPL-3.0"
}