-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "blockchain-core",
"version": "1.0.0",
"license": "GPL-3.0",
"description": "Implementation of core blockchain with Javascript",
"main": "index.js",
"repository": "https://github.com/Zigurat-blockchain-masters/blockchain-core.git",
"contributors": [
{
"name": "Roman Kokhatskyi",
"github": "rkokhatskyi"
},
{
"name": "Jean-Christophe Rigo",
"github": "jcrigo86"
},
{
"name": "Walter von Gabain",
"github": "waltervongabain"
},
{
"name": "Miguel Santamaria",
"github": "msantamaria86"
},
{
"name": "Angelos Nistikoulis",
"github": "agn21"
}
],
"scripts": {
"test": "jest --verbose",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"babel-jest": "^29.6.4",
"body-parser": "1.20.2",
"chai": "^4.3.8",
"crypto-hash": "^2.0.1",
"crypto-js": "^4.1.1",
"crypto-random-string": "^5.0.0",
"crypto-ts": "^1.0.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.6.4",
"node": "^20.6.0",
"uuid": "^9.0.0"
}
}