-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@metrixnames/mnslib",
"version": "2.2.3",
"description": "Library for interacting with the Metrix Name Service",
"repository": "TheLindaProjectInc/mnslib",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=18.0.0"
},
"scripts": {
"test": "mocha --config mocharc.json",
"coverage": "nyc --reporter=json-summary npm run test",
"lint": "eslint .",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"doc": "npx typedoc src",
"clean": "rimraf lib docs"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"**/*.spec.*",
"coverage"
],
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true
},
"author": "SeqSEE",
"license": "MIT",
"homepage": "https://thelindaprojectinc.github.io/mnslib/index.html",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/locks": "^0.2.1",
"@types/mocha": "^10.0.1",
"@types/node": "^22.4.1",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"assert": "^2.0.0",
"eslint": "^9.9.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.0",
"typedoc": "^0.26.5",
"typescript": "5.5.4"
},
"dependencies": {
"@ensdomains/address-encoder": "^0.2.20",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@metrixcoin/metrilib": "^1.6.2-beta",
"bs58": "^6.0.0",
"content-hash": "^2.5.2",
"ethers": "^6.0.3",
"locks": "^0.2.2",
"node-fetch": "^2.6.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}