From 4be4db5e6cfdde4ba5c1243b2bafeb6bbae3643c Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Wed, 5 Nov 2014 19:46:01 +0200 Subject: Converted to node module Converted to npm package Added brower Added browserify with minification Updated Readme --- bower.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 bower.json (limited to 'bower.json') diff --git a/bower.json b/bower.json new file mode 100644 index 000000000..b4b7a1427 --- /dev/null +++ b/bower.json @@ -0,0 +1,47 @@ +{ + "name": "ethereum.js", + "namespace": "ethereum", + "version": "0.0.1", + "description": "Ethereum Compatible JavaScript API", + "main": "dist/ethereum.js", + "dependencies": { + "es6-promise": "#master" + }, + "repository": { + "type": "git", + "url": "https://github.com/ethereum/ethereum.js.git" + }, + "bugs": { + "url": "https://github.com/ethereum/ethereum.js/issues" + }, + "keywords": [ + "ethereum", + "javascript", + "API" + ], + "authors": [ + { + "name": "Marek Kotewicz", + "email": "marek@ethdev.com", + "homepage": "https://github.com/debris" + }, + { + "name": "Marian Oancea", + "email": "marian.oancea@gmail.com", + "homepage": "https://github.com/cubedro" + } + ], + "license": "LGPL-3.0", + "ignore": [ + "example", + "lib", + "node_modules", + "package.json", + ".editorconfig", + ".gitignore", + ".jshintrc", + ".travis.yml", + "*.js", + "**/*.txt" + ] +} \ No newline at end of file -- cgit v1.2.3 From c402dad6fac03a182c544e0099a48cf6b6709373 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Wed, 5 Nov 2014 22:33:28 +0200 Subject: Updated bower.json & Readme --- bower.json | 1 + 1 file changed, 1 insertion(+) (limited to 'bower.json') diff --git a/bower.json b/bower.json index b4b7a1427..551fc5edd 100644 --- a/bower.json +++ b/bower.json @@ -4,6 +4,7 @@ "version": "0.0.1", "description": "Ethereum Compatible JavaScript API", "main": "dist/ethereum.js", + "scripts": ["dist/ethereum.js", "dist/ethereum.min.js"], "dependencies": { "es6-promise": "#master" }, -- cgit v1.2.3 From f281a362f062073ed20da9af936fb537f2234769 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Wed, 5 Nov 2014 22:37:00 +0200 Subject: bower small fix --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index 551fc5edd..de7d5c5b2 100644 --- a/bower.json +++ b/bower.json @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/ethereum/ethereum.js.git" + "url": "https://github.com/cubedro/ethereum.js.git" }, "bugs": { "url": "https://github.com/ethereum/ethereum.js/issues" -- cgit v1.2.3 From dcae30c1e4429635f58be5b86695dbdb9e58ad23 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Wed, 5 Nov 2014 22:58:06 +0200 Subject: updated bower.json ignore --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index de7d5c5b2..d1c4d2cd9 100644 --- a/bower.json +++ b/bower.json @@ -42,7 +42,7 @@ ".gitignore", ".jshintrc", ".travis.yml", - "*.js", + "./*.js", "**/*.txt" ] } \ No newline at end of file -- cgit v1.2.3 From 44ab30f628a3305d8c20c78b3dadbf2f15112fbc Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Wed, 5 Nov 2014 23:07:13 +0200 Subject: more json fixes --- bower.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index d1c4d2cd9..c5e732c1a 100644 --- a/bower.json +++ b/bower.json @@ -3,8 +3,7 @@ "namespace": "ethereum", "version": "0.0.1", "description": "Ethereum Compatible JavaScript API", - "main": "dist/ethereum.js", - "scripts": ["dist/ethereum.js", "dist/ethereum.min.js"], + "main": ["./dist/ethereum.js", "./dist/ethereum.min.js"], "dependencies": { "es6-promise": "#master" }, @@ -12,6 +11,7 @@ "type": "git", "url": "https://github.com/cubedro/ethereum.js.git" }, + "homepage": "https://github.com/cubedro/ethereum.js", "bugs": { "url": "https://github.com/ethereum/ethereum.js/issues" }, @@ -38,11 +38,14 @@ "lib", "node_modules", "package.json", + ".bowerrc", ".editorconfig", ".gitignore", ".jshintrc", + ".npmignore", ".travis.yml", - "./*.js", + "gulpfile.js", + "index.js", "**/*.txt" ] } \ No newline at end of file -- cgit v1.2.3 From 3270b432bcb007944e3b6e17329b062cb6b7da78 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Thu, 6 Nov 2014 22:51:37 +0200 Subject: Refactoring Removed browser fixes Updated gulp to bypass native browser objects Added source map for dist --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index c5e732c1a..aeced41a1 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "ethereum.js", "namespace": "ethereum", - "version": "0.0.1", + "version": "0.0.2", "description": "Ethereum Compatible JavaScript API", "main": ["./dist/ethereum.js", "./dist/ethereum.min.js"], "dependencies": { -- cgit v1.2.3 From 6fc5d8e81e8f01ec0a9654268ac0593f74841c30 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Mon, 10 Nov 2014 14:31:51 +0200 Subject: Prepare for PR changed repo urls from package.json, bower.json and readme --- bower.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index aeced41a1..a580bdf4b 100644 --- a/bower.json +++ b/bower.json @@ -9,9 +9,9 @@ }, "repository": { "type": "git", - "url": "https://github.com/cubedro/ethereum.js.git" + "url": "https://github.com/ethereum/ethereum.js.git" }, - "homepage": "https://github.com/cubedro/ethereum.js", + "homepage": "https://github.com/ethereum/ethereum.js", "bugs": { "url": "https://github.com/ethereum/ethereum.js/issues" }, @@ -28,7 +28,7 @@ }, { "name": "Marian Oancea", - "email": "marian.oancea@gmail.com", + "email": "marian@ethdev.com", "homepage": "https://github.com/cubedro" } ], -- cgit v1.2.3 From 720365859cfc56a6b59f6824f61138ed7ea8a782 Mon Sep 17 00:00:00 2001 From: Marian Oancea Date: Mon, 10 Nov 2014 15:26:10 +0200 Subject: Changed npm & bower version Changed version for next npm publish --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index a580bdf4b..cedae9023 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "ethereum.js", "namespace": "ethereum", - "version": "0.0.2", + "version": "0.0.3", "description": "Ethereum Compatible JavaScript API", "main": ["./dist/ethereum.js", "./dist/ethereum.min.js"], "dependencies": { -- cgit v1.2.3