-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ethjs-ens",
"version": "2.0.1",
"description": "An ENS interface module built on EthJS.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "npm run lint && istanbul cover tape test/*.js && npm run coveralls",
"build": "browserify example/index.js -o example/bundle.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ethjs/ethjs-ens.git"
},
"keywords": [
"Ethereum",
"DNS",
"ENS",
"EthJS"
],
"author": "Dan Finlay",
"license": "ISC",
"bugs": {
"url": "https://github.com/ethjs/ethjs-ens/issues"
},
"homepage": "https://github.com/ethjs/ethjs-ens#readme",
"dependencies": {
"eth-ens-namehash": "^1.0.2",
"ethereum-ens-network-map": "^1.0.0",
"ethjs-contract": "^0.1.7",
"ethjs-query": "^0.2.4"
},
"devDependencies": {
"coveralls": "^2.12.0",
"eslint": "^4.7.1",
"ethereumjs-testrpc": "^3.0.3",
"ethjs": "^0.2.5",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.2.4",
"istanbul": "^0.4.5",
"sinon": "^2.1.0",
"solc": "^0.4.9",
"tape": "^4.6.3",
"web3": "^0.18.2"
}
}