-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.67 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
{
"name": "evm-translator",
"version": "0.2.21",
"description": "a library for making EVM-based blockchain data more human-readable",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.ts",
"build": "tsc && tsc-alias",
"dev": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",
"format": "prettier --write \"src/**/*.ts\" \"docs/**/*.md\"",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"check": "yarn run lint && yarn run format && yarn run test",
"seed": "node lib/scripts/seed-db.js",
"prepare": "yarn run build",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn test && yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-metagame/evm-translator.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"Ethereum",
"ETH",
"EVM",
"Polygon",
"Blockchain",
"Crypto",
"Web3"
],
"author": "Brenner Spear",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-metagame/evm-translator/issues"
},
"homepage": "https://github.com/the-metagame/evm-translator#readme",
"dependencies": {
"axios": "^0.26.1",
"bottleneck": "^2.19.5",
"collect.js": "^4.32.0",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.6.2",
"limiter": "^2.1.0",
"mongoose": "^6.3.4",
"node-fetch": "2.6.6",
"require-context": "^1.1.0",
"traverse": "^0.6.6",
"winston": "^3.7.2",
"zod": "^3.16.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@types/traverse": "^0.6.32",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^28.1.0",
"concurrently": "^7.0.0",
"encoding": "^0.1.13",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsdoc": "^38.0.6",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.5",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.3"
}
}