-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 4.13 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
{
"name": "lamden-wallet",
"version": "2.5.5",
"description": "A secure wallet for making transactions on the Lamden blockchain.",
"author": "Jeff Scott <[email protected]>",
"license": "",
"scripts": {
"build": "node utils/build.js",
"tests": "npm run build && mocha --recursive --retries 3 --timeout 60000 selenium/tests/",
"test-firstrun": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/*.js",
"test-firstrun-new": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/FirstRun_CreateWallet.js",
"test-firstrun-restore": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/FirstRun_RestoreWallet*.js",
"test-firstrun-restore-keystroe": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/FirstRun_RestoreWalletByKetstore.js",
"test-firstrun-restore-mnemonic": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/FirstRun_RestoreWalletByMnemonic.js",
"test-firstrun-restore-privatekey": "mocha --recursive --timeout 60000 selenium/tests/ui/firstrun/FirstRun_RestoreWalletByPrivatekey.js",
"test-dapps": "mocha --recursive --timeout 60000 selenium/tests/dapp/*.js",
"test-tokens": "mocha --recursive --timeout 50000 selenium/tests/ui/tokens/*.js",
"test-tokens-add": "mocha --timeout 50000 selenium/tests/ui/tokens/tokens-add.js",
"test-tokens-upload": "mocha --timeout 60000 selenium/tests/ui/tokens/tokens-upload-images.js",
"test-tokens-edit": "mocha --timeout 60000 selenium/tests/ui/tokens/tokens-edit.js",
"test-tokens-transactions": "mocha --timeout 60000 selenium/tests/ui/tokens/tokens-transactions.js",
"test-coin": "mocha --timeout 60000 selenium/tests/ui/coin/*.js",
"test-coin-btn": "mocha --timeout 60000 selenium/tests/ui/coin/coin-btn.js",
"test-coin-backup-notification": "mocha --timeout 60000 selenium/tests/ui/coin/coin-backup-notification.js",
"test-coin-changepassword": "mocha --timeout 60000 selenium/tests/ui/coin/coin-changepassword.js",
"test-backup-view-accounts": "mocha --timeout 60000 selenium/tests/ui/backup/backup-view-accounts.js",
"test-misc": "mocha --timeout 60000 selenium/tests/ui/misc/*.js",
"test-misc-network": "mocha --timeout 60000 selenium/tests/ui/misc/network.js",
"test-dapps-wallet-connect-v2": "mocha --timeout 60000 selenium/tests/dapp/content_lamdenWalletConnect_v2.js",
"test-dapps-auth": "mocha --timeout 60000 selenium/tests/dapp/content_lamdenWalletDappAuth.js",
"test-dapps-get-info-v2": "mocha --timeout 60000 selenium/tests/dapp/content_lamdenWalletGetInfo_v2.js",
"test-dapps-sendtx-v2": "mocha --timeout 60000 selenium/tests/dapp/content_lamdenWalletSendTx_v2.js",
"test-dapps-sendx-backtoback-v2": "mocha --timeout 60000 selenium/tests/dapp/content_landenWalletSendTxBacktoBack_v2.js",
"test-dashboard-mainpage": "mocha --timeout 60000 selenium/tests/ui/dashboard/dashboardMainPage.js",
"dev": "node utils/webserver.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Lamden/wallet.git"
},
"devDependencies": {
"@babel/runtime": "^7.12.0",
"chromedriver": "^113.0.0",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "2.1.0",
"eslint": "^8.38.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"file-loader": "3.0.1",
"fs-extra": "7.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "^5.5.0",
"mocha": "^9.2.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"selenium-webdriver": "^4.0.0-alpha.7",
"style-loader": "^0.23.1",
"svelte": "^3.12.1",
"svelte-loader": "^2.13.4",
"svg-inline-loader": "^0.8.0",
"vitest": "^0.28.5",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"write-file-webpack-plugin": "4.5.0"
},
"dependencies": {
"chart.js": "^4.1.1",
"easyqrcodejs": "^4.4.6",
"lamden-js": "^3.8.7",
"monaco-editor": "^0.19.0",
"monaco-editor-webpack-plugin": "^1.8.1",
"node-cryptojs-aes": "^0.4.0",
"socket.io-client": "^4.2.0",
"svelte-chartjs": "^3.1.0",
"svelte-flatpickr": "^2.4.0",
"types-validate-assert": "^1.0.1",
"url-parse": "^1.5.10"
}
}