-
Notifications
You must be signed in to change notification settings - Fork 435
/
package.json
43 lines (43 loc) · 993 Bytes
/
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
{
"name": "blockchain-demo",
"description": "A web-based demonstration of publick key / private key concepts.",
"author": {
"name": "Anders Brownworth"
},
"scripts": {
"start": "node ./bin/www"
},
"version": "0.0.1",
"keywords": [
"public key",
"private key",
"demo",
"bitcoin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anders94/public-key-private-key-demo.git"
},
"bugs": {
"url": "https://github.com/anders94/public-key-private-key-demo/issues"
},
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"debug": ">=2.6.9",
"express": "^4.21.1",
"i18n": "0.8.3",
"morgan": ">=1.9.1",
"pug": "^3.0.3",
"serve-favicon": "^2.3.0"
},
"homepage": "https://github.com/anders94/public-key-private-key-demo#readme",
"maintainers": [
{
"name": "anders",
"email": "[email protected]"
}
]
}