web3.js/package.json

98 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "ethereum.js",
"namespace": "ethereum",
2015-03-03 23:46:53 +00:00
"version": "0.0.16",
2015-02-27 08:54:39 +00:00
"description": "Ethereum JavaScript API, middleware to talk to a ethreum node over RPC",
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
2015-02-16 21:49:26 +00:00
"bignumber.js": ">=2.0.0",
"envify": "^3.0.0",
"unreachable-branch-transform": "^0.1.0",
2015-02-16 21:49:26 +00:00
"xmlhttprequest": "*"
},
"devDependencies": {
"bower": ">=1.3.0",
2014-11-05 22:44:40 +00:00
"browserify": ">=6.0",
2015-03-07 18:18:22 +00:00
"chai": "^2.1.1",
2015-02-17 11:11:57 +00:00
"coveralls": "^2.11.2",
"del": ">=0.1.1",
"exorcist": "^0.1.6",
2014-11-05 22:49:50 +00:00
"gulp": ">=3.4.0",
2014-11-05 22:44:40 +00:00
"gulp-jshint": ">=1.5.0",
"gulp-rename": ">=1.2.0",
2015-02-17 11:11:57 +00:00
"gulp-streamify": "0.0.5",
2014-11-05 22:44:40 +00:00
"gulp-uglify": ">=1.0.0",
2015-02-17 11:11:57 +00: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 21:49:26 +00:00
"mocha": ">=2.1.0",
2015-02-17 11:11:57 +00:00
"vinyl-source-stream": "^1.0.0"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"lint": "gulp lint",
2015-02-16 21:49:26 +00:00
"test": "mocha",
2015-03-06 09:06:50 +00:00
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose",
2015-03-06 20:37:44 +00:00
"karma": "./node_modules/karma/bin/karma start --singleRun=true --browsers=\"Firefox\""
},
"repository": {
"type": "git",
"url": "https://github.com/ethereum/ethereum.js.git"
},
"homepage": "https://github.com/ethereum/ethereum.js",
"bugs": {
2014-11-05 21:07:13 +00:00
"url": "https://github.com/ethereum/ethereum.js/issues"
},
"browserify": {
"transform": [
[
"envify",
{
"NODE_ENV": "build"
}
],
[
"unreachable-branch-transform"
]
]
},
"keywords": [
"ethereum",
"javascript",
"API"
],
2014-11-05 18:12:21 +00: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",
"email": "fabian@ethdev.com",
"homepage": "https://github.com/frozeman"
}
],
2014-11-05 18:12:21 +00:00
"license": "LGPL-3.0"
}