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" + } +}