commit 9eb7c224335bed57a49d99a09410eadabc6e567f Author: Dan Finlay Date: Tue Mar 7 16:24:51 2017 -0800 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/package.json b/package.json new file mode 100644 index 0000000..c29c029 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "eth-ens-namehash", + "version": "1.0.0", + "description": "A simple module for generating ENS namehashes per spec https://github.com/ethereum/EIPs/issues/137", + "main": "index.js", + "scripts": { + "test": "node test" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/flyswatter/eth-ens-namehash.git" + }, + "keywords": [ + "Ethereum", + "ENS" + ], + "author": "Dan Finlay ", + "license": "ISC", + "bugs": { + "url": "https://github.com/flyswatter/eth-ens-namehash/issues" + }, + "homepage": "https://github.com/flyswatter/eth-ens-namehash#readme", + "devDependencies": { + "tape": "^4.6.3" + } +}