forked from dawsbot/essential-eth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.48 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
{
"name": "essential-eth",
"description": "Ultralight JS for Ethereum",
"version": "0.5.4",
"license": "MIT",
"sideEffects": false,
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"bugs": {
"url": "https://github.com/dawsbot/essential-eth/issues"
},
"repository": "https://github.com/dawsbot/essential-eth.git",
"author": "@dawsbot",
"scripts": {
"test": "npm-run-all --parallel jest compile lint",
"test:all-node-versions": "npx trevor",
"lint": "eslint --cache --fix .",
"compile": "npm-run-all --parallel tsc:esm tsc:cjs",
"tsc:esm": "tsc -p tsconfig.json",
"tsc:cjs": "tsc -p tsconfig-cjs.json",
"build": "rm -rf lib && npm run compile",
"build:readme": ". ./scripts/markdown-magic/build-readme.sh",
"jest": "jest",
"build:chains-info": "npx ts-node scripts/fetch-chains-info.ts # used in getNetwork()",
"update-deps": "sh ./scripts/pre-commit.sh",
"pre-commit": "run-p build:chains-info update-deps",
"prepare": "husky install",
"version": "npx genversion --es6 src/logger/package-version.ts && git add src/logger/package-version.ts",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jest-dev-server": "^5.0.0",
"@types/node": "^16.10.1",
"@types/prettier": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"body-parser": "^1.19.0",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-plugin-jest": "^26.1.5",
"ethers": "^5.6.4",
"express": "^4.17.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-dev-server": "^6.0.3",
"just-omit": "^2.0.1",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"perf_hooks": "^0.0.1",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.2.1",
"typescript": "^4.6.4",
"web3": "^1.7.3"
},
"dependencies": {
"@types/big.js": "^6.1.3",
"big.js": "^6.1.1",
"isomorphic-unfetch": "^3.1.0",
"sha3": "^2.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md,json,html,yml,yaml}": [
"prettier --write"
],
"*.{ts,tsx}": "eslint --cache --fix"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
}
}