forked from Plutonomicon/cardano-transaction-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.67 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
{
"name": "cardano-transaction-lib",
"version": "5.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/Plutonomicon/cardano-transaction-lib.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run unit-test && npm run integration-test && npm run plutip-test && npm run staking-test",
"start-runtime": "nix run -L .#ctl-runtime",
"start-blockfrost-runtime": "nix run -L .#ctl-runtime-blockfrost",
"integration-test": "spago run --main Test.Ctl.Integration",
"blockfrost-test": "source ./test/blockfrost.env && spago run --main Test.Ctl.Blockfrost.Contract",
"blockfrost-local-test": "source ./test/blockfrost-local.env && spago run --main Test.Ctl.Blockfrost.Contract",
"unit-test": "spago run --main Test.Ctl.Unit",
"plutip-test": "spago run --main Test.Ctl.Plutip",
"staking-test": "spago run --main Test.Ctl.Plutip.Staking",
"e2e-serve": "spago bundle-module -m Ctl.Examples.ByUrl --to output.js && BROWSER_RUNTIME=1 webpack-dev-server --progress",
"e2e-test": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'e2e-test run'",
"e2e-test-debug": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'e2e-test run --no-headless'",
"e2e-browser": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'e2e-test browser'",
"e2e-pack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'e2e-test pack'",
"e2e-unpack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'e2e-test unpack'",
"dev": "make run-dev",
"build": "make run-build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@emurgo/cardano-message-signing-browser": "1.0.1",
"@emurgo/cardano-message-signing-nodejs": "1.0.1",
"@emurgo/cardano-serialization-lib-browser": "11.2.1",
"@emurgo/cardano-serialization-lib-nodejs": "11.2.1",
"@mlabs-haskell/csl-gc-wrapper": "^1.0.1",
"@mlabs-haskell/json-bigint": " 1.0.0",
"@noble/secp256k1": "^1.7.0",
"apply-args-browser": "0.0.1",
"apply-args-nodejs": "0.0.1",
"base64-js": "^1.5.1",
"big-integer": "1.6.51",
"bignumber.js": "^9.1.1",
"bip39": "^3.1.0",
"blakejs": "1.2.1",
"bufferutil": "4.0.5",
"jssha": "3.2.0",
"node-polyfill-webpack-plugin": "1.1.4",
"puppeteer-core": "^15.3.2",
"reconnecting-websocket": "4.4.0",
"uniqid": "5.4.0",
"ws": "8.4.0",
"xhr2": "0.2.1"
},
"devDependencies": {
"buffer": "6.0.3",
"doctoc": "^2.2.1",
"html-webpack-plugin": "5.5.0",
"webpack": "5.67.0",
"webpack-cli": "4.10",
"webpack-dev-server": "4.7.4"
},
"prettier": {
"arrowParens": "avoid"
}
}