-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 895 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
{
"name": "krypto-coin",
"version": "1.0.0",
"description": "A crypto currency implementation in node",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "node ./src/app",
"dev": "nodemon ./src/app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SupratikRulz/krypto-coin.git"
},
"keywords": [
"cryptocurrency",
"bitcoin",
"krypto",
"krypto-coin",
"krypto",
"coin",
"node",
"nodejs",
"javascript"
],
"author": "supratikrulz",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupratikRulz/krypto-coin/issues"
},
"homepage": "https://github.com/SupratikRulz/krypto-coin#readme",
"devDependencies": {
"jest": "^22.4.4",
"nodemon": "^1.17.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"express": "^4.16.3"
}
}