-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@triplespeeder/ens-updater",
"version": "0.0.0-development",
"description": "Set ENS name records from the commandline",
"homepage": "https://github.com/TripleSpeeder/ens-updater",
"main": "lib/index.js",
"bin": {
"ens-updater": "bin/ens-updater.js"
},
"scripts": {
"test:unit": "mocha unitTest/**/*.test.js --exit",
"test:truffle": "truffle test",
"test": "npm run test:unit && npm run test:truffle",
"semantic-release": "semantic-release"
},
"keywords": [
"ENS",
"ipfs",
"ethereum"
],
"author": "[email protected]",
"repository": "https://github.com/TripleSpeeder/ens-updater",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
},
"dependencies": {
"@ensdomains/address-encoder": "^0.1.3",
"@ensdomains/ens": "^0.4.0",
"@ensdomains/ethregistrar": "^2.0.0",
"@ensdomains/resolver": "^0.2.0",
"@truffle/contract": "^4.1.7",
"@truffle/hdwallet-provider": "^1.0.30",
"connection-tester": "^0.2.0",
"content-hash": "^2.5.2",
"dotenv": "^8.2.0",
"eth-ens-namehash": "^2.0.8",
"web3": "^1.2.5",
"yargs": "^15.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ensdomains/buffer": "0.0.10",
"@ensdomains/dnssec-oracle": "^0.1.2",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"execa": "^3.4.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^7.0.1",
"semantic-release": "^15.13.31",
"sinon": "^8.1.1",
"web3-utils": "^1.2.5"
}
}