-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "@johanneskares/wallet-mock",
"version": "0.0.0-semantically-released",
"description": "Mock Web3 Browser wallets, like Metamask, in Playwright tests.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"web3",
"wallet",
"mock",
"playwright",
"metamask",
"ethereum",
"dapp",
"testing"
],
"author": "Johannes Kares",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.2",
"dotenv": "^16.4.5",
"prettier": "^3.3.2",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"viem": "^2.13.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanneskares/wallet-mock.git"
},
"namespace": "@johanneskares",
"peerDependencies": {
"@playwright/test": "^1.44.1",
"viem": "^2.13.8"
},
"scripts": {
"build": "tsc",
"dev": "tsc -W",
"test": "playwright test",
"test-ui": "playwright test --ui",
"test-debug": "npx playwright test --project='Google Chrome' --debug",
"install-conventional-commit": "curl -o- https://raw.githubusercontent.com/tapsellorg/conventional-commits-git-hook/master/scripts/install.sh | sh"
}
}