-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
48
{
"name": "vapjs-ens",
"namespace": "vapjs",
"version": "2.0.1",
"description": "An ENS interface module built on VapJS.",
"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://git@github.com/vapjs/vapjs-ens.git"
},
"keywords": [
"Vapory",
"DNS",
"ENS",
"VapJS"
],
"author": "Dan Finlay",
"license": "ISC",
"bugs": {
"url": "https://github.com/vapjs/vapjs-ens/issues"
},
"homepage": "https://github.com/vapjs/vapjs-ens#readme",
"dependencies": {
"vap-ens-namehash": "^1.0.2",
"vapory-ens-network-map": "^1.0.0",
"vapjs-contract": "^0.1.7",
"vapjs-query": "^0.2.4"
},
"devDependencies": {
"coveralls": "^2.12.0",
"eslint": "^4.7.1",
"vaporyjs-testrpc": "^3.0.3",
"vapjs": "^0.2.5",
"vapjs-provider-http": "^0.1.6",
"vapjs-query": "^0.2.4",
"istanbul": "^0.4.5",
"sinon": "^2.1.0",
"solc": "^0.4.9",
"tape": "^4.6.3",
"web3": "^0.18.2"
}
}