-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
49
{
"name": "eth-registrar-ens",
"version": "0.8.3",
"description": "\"JS bindings for the ENS initial registrar, auctioning `.eth` names\"",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"prepublish": "npm run build",
"test": "mocha src/test/test",
"posttest": "npm run lint && documentation readme src/index.js -f md -s 'Overview'",
"build": "babel src -d lib",
"lint": "eslint src --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maurelian/dot-eth-js.git"
},
"keywords": [
"ethereum",
"ens",
"registrar",
"eth"
],
"author": "Maurelian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/maurelian/dot-eth-js/issues"
},
"homepage": "https://github.com/maurelian/dot-eth-js#readme",
"dependencies": {
"ethereum-ens": "^0.4.0",
"underscore": "^1.8.3",
"web3": "^0.18.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.4",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-testrpc": "^3.0.2",
"mocha": "^3.2.0",
"solc": "^0.4.4"
}
}