-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "evm-chainlist",
"version": "1.1.4",
"description": "This library for easy manage and access to EVM-based Chains information",
"main": "dist/index.js",
"repository": "https://github.com/xxamxx/chainlist.git",
"author": "xxamxx <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rm -rf dist/* && tsc -p ./tsconfig.build.json",
"test": "jest --require=ts-node/register --require=tsconfig-paths/register",
"publish": "npm run build && npm publish ."
},
"dependencies": {
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"json5": "^2.2.3",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "14.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"bugs": {
"url": "https://github.com/xxamxx/chainlist/issues"
},
"homepage": "https://github.com/xxamxx/chainlist#readme",
"keywords": [
"network",
"chain",
"eth",
"evm",
"common",
"blockchain",
"ethereum",
"eip155"
],
"files": [
"dist/**/*"
]
}