forked from Arachnid/eth-ens-namehash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 906 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "eth-ens-namehash",
"version": "2.0.9",
"description": "A simple module for generating ENS namehashes per spec https://github.com/ethereum/EIPs/issues/137",
"main": "index.js",
"scripts": {
"bundle": "browserify index.js -o dist/index.js",
"test": "node test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/danfinlay/eth-ens-namehash.git"
},
"keywords": [
"Ethereum",
"ENS"
],
"author": "Dan Finlay <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/danfinlay/eth-ens-namehash/issues"
},
"homepage": "https://github.com/danfinlay/eth-ens-namehash#readme",
"devDependencies": {
"tape": "^4.6.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browserify": "^14.0.0"
},
"dependencies": {
"idna-uts46-hx": "^2.3.1",
"js-sha3": "^0.5.7"
}
}