Skip to content

Commit

Permalink
add ethereum namespace to packages
Browse files Browse the repository at this point in the history
  • Loading branch information
frozeman committed Sep 18, 2017
1 parent 22ba411 commit f5bc2ba
Show file tree
Hide file tree
Showing 21 changed files with 90 additions and 35 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "web3",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Ethereum JavaScript API",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"directories": {
"doc": "./doc",
Expand All @@ -12,7 +12,7 @@
"postinstall": "lerna bootstrap",
"build": "gulp",
"build-all": "gulp all",
"release": "lerna bootstrap; gulp; lerna publish --skip-git;",
"release": "lerna bootstrap; gulp; lerna publish --skip-git; gulp version;",
"watch": "gulp watch",
"docs": "cd docs; make html;",
"lint": "jshint *.js packages",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-bzz/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-bzz",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with the Swarm network.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-bzz",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core-helpers",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 core tools helper for sub packages. This is an internal package.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-helpers",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core-method/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core-method",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Creates the methods on the web3 modules. This is an internal package.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-method",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core-promievent/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core-promievent",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "This package extends eventEmitters with promises to allow chaining as well as multiple final states of a function.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-promievent",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core-requestmanager/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core-requestmanager",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to handle requests to external providers.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-requestmanager",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core-subscriptions/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core-subscriptions",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Manages web3 subscriptions. This is an internal package.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-subscriptions",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-core",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 core tools for sub packages. This is an internal package.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-eth-abi/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-eth-abi",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module encode and decode EVM in/output.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-abi",
Expand Down
35 changes: 18 additions & 17 deletions packages/web3-eth-accounts/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"name": "web3-eth-accounts",
"version": "1.0.0-beta.20",
"description": "Web3 module to generate Ethereum accounts and sign data and transactions.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-accounts",
"license": "LGPL-3.0",
"main": "src/index.js",
"dependencies": {
"bluebird": "3.3.1",
"eth-lib": "^0.1.27",
"scrypt.js": "0.2.0",
"underscore": "1.8.3",
"uuid": "2.0.1",
"web3-core": "^1.0.0-beta.20",
"web3-core-helpers": "^1.0.0-beta.20",
"web3-core-method": "^1.0.0-beta.20",
"web3-utils": "^1.0.0-beta.20"
}
"name": "web3-eth-accounts",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to generate Ethereum accounts and sign data and transactions.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-accounts",
"license": "LGPL-3.0",
"main": "src/index.js",
"dependencies": {
"bluebird": "3.3.1",
"eth-lib": "^0.1.27",
"scrypt.js": "0.2.0",
"underscore": "1.8.3",
"uuid": "2.0.1",
"web3-core": "^1.0.0-beta.20",
"web3-core-helpers": "^1.0.0-beta.20",
"web3-core-method": "^1.0.0-beta.20",
"web3-utils": "^1.0.0-beta.20"
}
}
1 change: 1 addition & 0 deletions packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-eth-contract",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with Ethereum smart contracts.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-contract",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-eth-iban/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-eth-iban",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "This package converts Ethereum addresses to IBAN addresses a vice versa.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-iban",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-eth-personal/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-eth-personal",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with the Ethereum blockchain accounts stored in the node.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-personal",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-eth/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-eth",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-net/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-net",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with the Ethereum nodes networking properties.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-net",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-providers-http/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-providers-http",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Module to handle web3 RPC connections over HTTP.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-http",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-providers-ipc/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-providers-ipc",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Module to handle web3 RPC connections over IPC sockets.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-ipc",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-providers-ws/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-providers-ws",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Module to handle web3 RPC connections over WebSockets.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-ws",
Expand Down
1 change: 1 addition & 0 deletions packages/web3-shh/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "web3-shh",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 module to interact with the Whisper messaging protocol.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-shh",
Expand Down
31 changes: 16 additions & 15 deletions packages/web3-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"name": "web3-utils",
"version": "1.0.0-beta.20",
"description": "Collection of utility functions used in web3.js.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-utils",
"license": "LGPL-3.0",
"main": "src/index.js",
"dependencies": {
"bn.js": "4.11.6",
"eth-lib": "^0.1.27",
"ethjs-unit": "0.1.6",
"number-to-bn": "1.7.0",
"randomhex": "0.1.5",
"underscore": "1.8.3",
"utf8": "2.1.1"
}
"name": "web3-utils",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Collection of utility functions used in web3.js.",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-utils",
"license": "LGPL-3.0",
"main": "src/index.js",
"dependencies": {
"bn.js": "4.11.6",
"eth-lib": "^0.1.27",
"ethjs-unit": "0.1.6",
"number-to-bn": "1.7.0",
"randomhex": "0.1.5",
"underscore": "1.8.3",
"utf8": "2.1.1"
}
}
38 changes: 37 additions & 1 deletion packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,46 @@
{
"name": "web3",
"namespace": "ethereum",
"version": "1.0.0-beta.20",
"description": "Web3 main package.",
"description": "Ethereum JavaScript API",
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3",
"license": "LGPL-3.0",
"main": "src/index.js",
"bugs": {
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"Ethereum",
"JavaScript",
"API"
],
"author": "ethereum.org",
"authors": [
{
"name": "Fabian Vogelsteller",
"email": "fabian@ethereum.org",
"homepage": "http://frozeman.de"
},
{
"name": "Marek Kotewicz",
"email": "marek@parity.io",
"url": "https://github.com/debris"
},
{
"name": "Marian Oancea",
"url": "https://github.com/cubedro"
},
{
"name": "Gav Wood",
"email": "g@parity.io",
"homepage": "http://gavwood.com"
},
{
"name": "Jeffery Wilcke",
"email": "jeffrey.wilcke@ethereum.org",
"url": "https://github.com/obscuren"
}
],
"dependencies": {
"web3-core": "^1.0.0-beta.20",
"web3-eth": "^1.0.0-beta.20",
Expand Down

0 comments on commit f5bc2ba

Please sign in to comment.