forked from torusresearch/fetch-node-details
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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
79
80
81
82
83
84
85
86
87
88
{
"name": "@toruslabs/fetch-node-details",
"version": "8.0.0",
"description": "Fetches the node details from torus nodelist smart contract",
"main": "dist/fetchNodeDetails.cjs.js",
"module": "dist/fetchNodeDetails.esm.js",
"unpkg": "dist/fetchNodeDetails.umd.min.js",
"jsdelivr": "dist/fetchNodeDetails.umd.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"test": "mocha",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install"
},
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"web3-eth-contract": "^1.8.0",
"web3-utils": "^1.8.0"
},
"devDependencies": {
"@babel/register": "^7.18.9",
"@rollup/plugin-replace": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^1.1.2",
"@toruslabs/torus-scripts": "^1.2.2",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/fetch-node-details.git"
},
"keywords": [
"torus",
"nodes",
"torus-embed",
"torus-website",
"fetch-node-details",
"toruslabs"
],
"author": "Chaitanya Potti",
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/fetch-node-details/issues"
},
"homepage": "https://github.com/torusresearch/fetch-node-details#readme",
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
}
}