-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "@wallet-test-framework/glue-taho",
"version": "0.1.0",
"description": "Glue between Wallet Test Framework and Taho Wallet",
"license": "MIT",
"type": "module",
"bin": "./dist/cli.js",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"fmt": "prettier --write .",
"build": "node ./Build.js && tsc -d --emitDeclarationOnly",
"test": "prettier --check . && eslint . && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallet-test-framework/glue-taho.git"
},
"contributors": [
{
"name": "Nikki Gaudreau",
"url": "https://twitter.com/gaudren_",
"email": "[email protected]"
},
{
"name": "Sam Wilson",
"url": "https://twitter.com/_SamWilsn_",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/wallet-test-framework/glue-taho/issues"
},
"homepage": "https://wtf.allwallet.dev/",
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^3.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.6.1",
"@types/selenium-webdriver": "^4.1.19",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "0.20.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.2.5",
"typescript": "^5.2.2"
},
"dependencies": {
"@wallet-test-framework/glue": "^0.8.0",
"@wallet-test-framework/glue-ws": "^0.2.0",
"meow": "^13.2.0",
"selenium-webdriver": "^4.14.0"
}
}