-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 949 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
35
36
37
{
"name": "ensdk",
"version": "1.0.0",
"description": "An easy way to integrate Ethereum Name Service",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"lint": "npx eslint . --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockful-io/ensdk.git"
},
"keywords": [
"ENS"
],
"author": "Alexandro T. Netto",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockful-io/ensdk/issues"
},
"homepage": "https://github.com/blockful-io/ensdk#readme",
"type": "module",
"dependencies": {
"@adraffy/ens-normalize": "^1.10.0",
"keccak256": "^1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"husky": "^8.0.3",
"jest": "^29.7.0"
}
}