forked from Colored-Coins/Colored-Coins-Block-Explorer
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.49 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.49 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "digiasset-block-explorer",
"version": "1.0.2",
"description": "DigiAssets Block Explorer",
"main": "app.js",
"dependencies": {
"async": "~0.9.0",
"bitcoin-async": "^1.0.0",
"bitcoinjs-lib": "^1.5.6",
"bs58": "^3.0.0",
"casimircore": "git+https://github.com/Colored-Coins/casimircore.git#postgres",
"digiasset-block-parser": "git+https://github.com/DigiByte-Core/DigiAssets-Parser.git#sql",
"sequelize": "^3.19.3",
"squel": "^5.0.3",
"nodejs-sql": "git+https://github.com/oleiba/nodejs-sql.git",
"digiasset-errors": "^0.1.4",
"digiasset-request-id": "^0.1.1",
"coinstring": "^2.3.0",
"commander": "^2.9.0",
"ecdsa": "^0.6.0",
"ecurve": "^1.0.2",
"express-validator": "^2.20.8",
"google-libphonenumber": "^1.0.4",
"jade": "^1.9.1",
"jsonfile": "^2.0.0",
"lodash": "^3.10.0",
"moment": "~2.8.4",
"mongoose": "~4.4.3",
"ttl": "^1.3.0",
"validator": "^3.27.0"
},
"bin": {
"digiasset-explorer": "./bin/digiasset-block-explorer",
"digiasset-block-explorer": "./bin/digiasset-block-explorer"
},
"devDependencies": {
"chai": "^2.3.0",
"istanbul": "^0.3.19",
"loadtest": "^1.2.14",
"mocha": "^2.3.0",
"supertest": "^1.1.0",
"tape": "^4.0.0",
"xunit-file": "0.0.7"
},
"scripts": {
"casimir": "npm install && nodemon",
"test": "NODE_ENV=QA istanbul cover _mocha -- -R tap > test-reports.tap && istanbul report html",
"ci-mocha-test": "NODE_ENV=QA mocha -R xunit > test-reports.xml",
"start": "node app.js",
"ci-coverage-test": "NODE_ENV=QA istanbul cover _mocha -- -R tap > test-reports.tap && istanbul report cobertura",
"ci-full": "NODE_ENV=QA LOG_XUNIT=true XUNIT_FILE=test-reports.xml istanbul cover _mocha -- -R xunit-file",
"test-windows": ".\\node_modules\\.bin\\istanbul cover .\\node_modules\\mocha\\bin\\_mocha\\ -- -R tap > .\\test-reports.tap && istanbul report html"
},
"repository": {
"type": "git",
"url": "https://github.com/Colored-Coins/Colored-Coins-Block-Explorer.git"
},
"keywords": [
"explorer",
"coloredCoins",
"colored coins",
"bitcoin",
"blockchain",
"cryptocurrency"
],
"contributors": [
{
"name": "Eliran Zach",
"email": "thehobbit85@gmail.com"
},
{
"name": "bejavu",
"email": "tal@colu.co"
},
{
"name": "mdemri",
"email": "mdemri@gmail.com"
},
{
"name": "oleiba",
"email": "oded@colu.com"
}
],
"license": "MIT"
}