generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@symfoni/walletconnect-v2-ethers-signer",
"version": "0.3.0-beta.23",
"description": "A Ethers compatible signer for Wallet Connect version 2.",
"author": "Robertosnap <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/symfoni/walletconnect-v2-ethers-signer"
},
"files": [
"lib/"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"patch": "npm version patch --force",
"publish:beta": "npm publish --tag beta"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@walletconnect/client": "^2.0.0-beta.23",
"@walletconnect/types": "^2.0.0-beta.23",
"debug": "^4.3.2",
"ethers": "^5.1.3",
"tslib": "~2.2.0"
},
"devDependencies": {
"@types/jest": "~26.0.22",
"@types/node": "~14.14.41",
"@typescript-eslint/eslint-plugin": "~4.22.0",
"@typescript-eslint/parser": "~4.22.0",
"eslint": "~7.24.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.3.5",
"ethereum-test-network": "^0.1.6",
"jest": "~26.6.3",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.5",
"tsutils": "~3.21.0",
"typescript": "~4.2.4"
},
"license": "Apache-2.0"
}