-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 KB
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
{
"name": "@imperviousinc/id",
"version": "0.1.0-alpha.2",
"description": "A compact library for interacting with domains on the new internet. Supports Impervious domains, Forever and ENS.",
"main": "./dist/esm/index.js",
"scripts": {
"build": "node ./esbuild.js",
"test": "mocha --timeout 10000 --require esm 'test/**/*.test.js'",
"lint": "./node_modules/.bin/eslint --fix src/"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"keywords": [],
"author": "Impervious Inc",
"license": "Apache-2.0",
"dependencies": {
"buffer": "^6.0.3",
"dns-packet": "^5.6.0"
},
"peerDependencies": {
"ethers": "^6.3.0"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.2.2",
"@nomiclabs/hardhat-ethers": "^3.0.0-beta.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dns-packet": "^5.6.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"esm": "^3.2.25",
"ethers": "^6.3.0",
"hardhat": "^2.14.0",
"mocha": "^10.2.0"
}
}