-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "min-chain",
"version": "0.0.1",
"description": "Min-chain is a project for learning to created blokchain",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev-test": "nodemon dev-test",
"start": "node ./app",
"dev": "nodemon ./app"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/edumar111/mainchain.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"blockchain"
],
"author": "Eduardo Marchena <[email protected]> (www.socialdata.com.pe)",
"license": "MIT",
"bugs": {
"url": "https://github.com/edumar111/mainchain/issues"
},
"homepage": "https://github.com/edumar111/mainchain#readme",
"dependencies": {
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"express": "^4.16.3",
"uuid": "^3.3.2",
"ws": "^6.0.0"
},
"devDependencies": {
"jest": "^23.6.0"
}
}