-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "@cardanoapi/cardano-test-wallet",
"version": "3.0.0",
"license": "MIT",
"description": "This JavaScript library injects a simulated Cardano wallet into your web application for testing purposes.",
"repository": {
"type": "git",
"url": "https://github.com/cardanoapi/cardano-test-wallet"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/node-fetch": "^2.6.11",
"copy-webpack-plugin": "^12.0.2",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "node build.js",
"test": "mocha 'tests/**/*.test.ts'",
"test:file": "mocha",
"test:grep": "mocha --grep"
},
"dependencies": {
"@emurgo/cardano-message-signing-nodejs": "^1.0.1",
"@emurgo/cardano-serialization-lib-nodejs": "^11.5.0",
"@noble/curves": "^1.3.0",
"@noble/ed25519": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/seedrandom": "^3.0.8",
"bech32": "^2.0.0",
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"cbor-x": "^1.5.8",
"chai": "^5.1.1",
"dotenv": "^16.4.4",
"jsdom": "^24.1.0",
"node-fetch": "v2",
"path": "^0.12.7",
"seedrandom": "^3.0.5",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}