-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 2.14 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
{
"type": "module",
"name": "cardano-transaction-lib",
"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 testnet-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",
"testnet-test": "spago run --main Test.Ctl.Testnet",
"staking-test": "spago run --main Test.Ctl.Testnet.Staking",
"e2e-serve": "make esbuild-serve",
"e2e-test": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'run'",
"e2e-test-debug": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'run --no-headless'",
"e2e-browser": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'browser'",
"e2e-pack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'pack'",
"e2e-unpack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'unpack'",
"esbuild-bundle": "make esbuild-bundle",
"esbuild-serve": "make esbuild-serve",
"webpack-bundle": "make webpack-bundle",
"webpack-serve": "make webpack-serve"
},
"license": "MIT",
"dependencies": {
"@mlabs-haskell/ctl-npm-meta": "1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"blakejs": "1.2.1",
"buffer": "6.0.3",
"doctoc": "^2.2.1",
"esbuild": "0.18.11",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-plugin-wasm": "^1.1.0",
"globals": "^15.8.0",
"jssha": "3.2.0",
"node-polyfill-webpack-plugin": "2.0.1",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "none"
}
}