-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
46
47
48
49
{
"name": "blockchain-js",
"version": "0.0.1",
"description": "A very simple blockchain implementation with javascript.",
"main": "app/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/vittominacori/blockchain-js.git"
},
"keywords": [
"blockchain",
"javascript"
],
"author": "@vittominacori",
"contributors": [
{
"name": "Vittorio Minacori",
"url": "https://github.com/vittominacori"
}
],
"license": "MIT",
"homepage": "https://github.com/vittominacori/blockchain-js",
"dependencies": {
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"body-parser": "^1.18.3",
"crypto-js": "3.1.9-1",
"dotenv": "^6.1.0",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"log4js": "^3.0.6",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"socket.io": "^2.1.1",
"yargs": "^12.0.2",
"lite-server": "^2.4.0",
"prompt-sync": "^4.1.6"
}
}