-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 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
{
"name": "blockchain-javascript",
"version": "1.0.5",
"description": "javascript implementation of private / public blockchain",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "...",
"git-commit": "git add -A . && git commit -a -m 'gh-pages update'",
"git-push": "git push origin gh-pages --force && git checkout master",
"deploy": "npm run build && npm run git-commit && npm run git-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hskang9/blockchain.git"
},
"keywords": [
"blockchain",
"javascript",
"express"
],
"author": "Hyungsuk Kang",
"license": "MIT",
"preferGlobal": true,
"bin": {
"blockchain-javascript": "index.js"
},
"bugs": {
"url": "https://github.com/hskang9/blockchain/issues"
},
"homepage": "https://github.com/hskang9/blockchain#readme",
"dependencies": {
"body-parser": "^1.18.2",
"elliptic": "^6.4.0",
"express": "^4.16.2",
"request": "^2.87.0",
"secp256k1": "^3.5.0",
"sha256": "^0.2.0",
"url-parse": "^1.4.3"
},
"devDependencies": {},
"engines": {
"node": ">=4.2.4"
}
}