forked from Plutonomicon/cardano-transaction-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.25 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
{
"name": "cardano-transaction-lib",
"version": "2.0.0-alpha",
"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",
"integration-test": "spago run --main Test.Integration",
"unit-test": "spago run --main Ctl.Test.Unit",
"plutip-test": "spago run --main Test.Plutip",
"dev": "make run-dev",
"build": "make run-build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@emurgo/cardano-serialization-lib-browser": "11.0.5",
"@emurgo/cardano-serialization-lib-nodejs": "11.0.5",
"base64-js": "^1.5.1",
"big-integer": "1.6.51",
"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",
"html-webpack-plugin": "5.5.0",
"webpack": "5.67.0",
"webpack-cli": "4.10",
"webpack-dev-server": "4.7.4"
},
"prettier": {
"arrowParens": "avoid"
}
}