From b3056cd0ab36ef6c27c39ff8f6b4166499fefad3 Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Thu, 20 Apr 2017 10:33:37 +0200 Subject: [PATCH] Add ABI/API package.json --- js/src/abi/package.json | 29 +++++++++++++++++++++++++++++ js/src/api/package.json | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 js/src/abi/package.json create mode 100644 js/src/api/package.json diff --git a/js/src/abi/package.json b/js/src/abi/package.json new file mode 100644 index 000000000..b09f52c03 --- /dev/null +++ b/js/src/abi/package.json @@ -0,0 +1,29 @@ +{ + "name": "@parity/abi", + "description": "The Parity ABI library", + "version": "0.0.0", + "main": "index.js", + "author": "Parity Team ", + "maintainers": [ + "Jaco Greeff" + ], + "contributors": [], + "license": "GPL-3.0", + "repository": { + "type": "git", + "url": "git+https://github.com/paritytech/parity.git" + }, + "keywords": [ + "Ethereum", + "ABI", + "Parity" + ], + "scripts": { + }, + "devDependencies": { + }, + "dependencies": { + "bignumber.js": "~2.3.0", + "js-sha3": "~0.5.2" + } +} diff --git a/js/src/api/package.json b/js/src/api/package.json new file mode 100644 index 000000000..acbd37001 --- /dev/null +++ b/js/src/api/package.json @@ -0,0 +1,34 @@ +{ + "name": "@parity/api", + "description": "The Parity Promise-based API library for interfacing with Ethereum over RPC", + "version": "0.0.0", + "main": "index.js", + "author": "Parity Team ", + "maintainers": [ + "Jaco Greeff" + ], + "contributors": [], + "license": "GPL-3.0", + "repository": { + "type": "git", + "url": "git+https://github.com/paritytech/parity.git" + }, + "keywords": [ + "Ethereum", + "API", + "RPC", + "Parity", + "Promise" + ], + "scripts": { + }, + "devDependencies": { + }, + "dependencies": { + "@parity/abi": "file:../abi", + "bignumber.js": "~2.3.0", + "eventemitter3": "2.0.2", + "js-sha3": "~0.5.2", + "node-fetch": "~1.6.3" + } +}