forked from reown-com/blockchain-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.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
{
"name": "blockchain-api-integration-tests",
"version": "1.0.0",
"description": "Integration tests for blockchain-api",
"scripts": {
"integration": "jest --config integration/jestconfig.integration.json --verbose",
"format": "prettier --config integration/.prettierrc --write '*.{json,js}' 'integration/**/*.{js,ts}' '.github/**/*.{yml,yaml}'",
"lint": "eslint --max-warnings=0 integration && prettier --config integration/.prettierrc --check '*.{json,js}' 'integration/**/*.{js,ts}'"
},
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "Apache-2.0",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"axios": "^0.27.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"ethers": "^6.13",
"jest": "^27.0.1",
"json-canonicalize": "^1.0.6",
"keccak256": "^1.0.6",
"prettier": "^2.3.0",
"ts-jest": "^27.0.1",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2"
}
}