forked from shekohex/blockchain
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 700 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 700 Bytes
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
{
"name": "blockchain",
"version": "1.0.0",
"description": "Simple Block Chain Mechanism in Typescript for Learning Purpose",
"main": "./dist/bootstrap.js",
"scripts": {
"start": "ts-node ./src/bootstrap.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shekohex/blockchain.git"
},
"keywords": [
"blockchain",
"typescript",
"learning"
],
"author": "Shady Khalifa",
"license": "MIT",
"bugs": {
"url": "https://github.com/shekohex/blockchain/issues"
},
"homepage": "https://github.com/shekohex/blockchain#readme",
"devDependencies": {
"@types/node": "^11.9.0",
"ts-node": "^7.0.0",
"typescript": "^2.6.2"
}
}