-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.65 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@hyperledger-cacti/cactus-common-example-server",
"version": "3.0.0-beta.1",
"description": "Allows Cactus nodes to interact with HTLC ETH contracts",
"keywords": [
"Hyperledger",
"Cacti",
"Integration",
"Blockchain",
"Distributed Ledger Technology"
],
"homepage": "https://github.com/hyperledger-cacti/cacti#readme",
"bugs": {
"url": "https://github.com/hyperledger-cacti/cacti/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger-cacti/cacti.git"
},
"license": "Apache-2.0",
"author": {
"name": "Hyperledger Cacti Contributors",
"email": "cacti@lists.lfdecentralizedtrust.org",
"url": "https://www.lfdecentralizedtrust.org/projects/cacti"
},
"contributors": [
{
"name": "Please add yourself to the list of contributors",
"email": "your.name@example.com",
"url": "https://example.com"
}
],
"main": "dist/lib/main/typescript/index.js",
"module": "dist/lib/main/typescript/index.js",
"types": "dist/lib/main/typescript/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "npm run build-ts && npm run build:dev:backend:postbuild",
"build-ts": "tsc",
"build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/"
},
"dependencies": {
"@hyperledger-cacti/cactus-common": "3.0.0",
"@hyperledger-cacti/cactus-core-api": "3.0.0",
"@types/node": "26.1.1",
"body-parser": "2.3.0",
"config": "5.0.1",
"cookie-parser": "1.4.7",
"debug": "4.4.3",
"escape-html": "1.0.3",
"ethereumjs-common": "1.5.2",
"ethereumjs-tx": "2.1.2",
"express": "5.2.1",
"fabric-network": "2.5.0-snapshot.23",
"http-errors": "2.0.1",
"js-yaml": "5.3.0",
"jsonwebtoken": "9.0.3",
"log4js": "6.9.1",
"morgan": "1.11.0",
"shelljs": "0.10.0",
"socket.io": "4.8.3",
"socket.io-client-fixed-types": "4.5.4",
"web3": "4.16.0",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@hyperledger-cacti/cactus-test-tooling": "workspace:*",
"@types/body-parser": "1.19.6",
"@types/config": "4.4.0",
"@types/cookie-parser": "1.4.10",
"@types/debug": "4.1.13",
"@types/escape-html": "1.0.4",
"@types/express": "5.0.6",
"@types/http-errors": "2.0.5",
"@types/js-yaml": "4.0.9",
"@types/jsonwebtoken": "9.0.10",
"@types/lodash": "4.17.25",
"@types/morgan": "1.9.10",
"@types/node": "26.1.1",
"@types/shelljs": "0.10.0",
"http-terminator": "3.2.0",
"jest-extended": "7.0.0",
"lodash": "4.18.1",
"ts-node": "10.9.2"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"publishConfig": {
"access": "public"
}
}