forked from hyperledger/firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.38 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
86
87
88
89
90
91
92
93
94
95
{
"name": "kaleido-asset-trail",
"version": "1.0.3",
"description": "Kaleido Asset Trail",
"main": "build/index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"test_wc": "env DATA_DIRECTORY=$PWD/test-resources/sandbox/ethereum mocha --bail --timeout 25000 \"src/test/ethereum-suite.ts\" && env DATA_DIRECTORY=$PWD/test-resources/sandbox/corda mocha --bail --timeout 25000 \"src/test/corda-suite.ts\"",
"test": "nyc npm run test_wc"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^6.12.5",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"busboy": "^0.3.1",
"chokidar": "^3.4.3",
"express": "^4.17.1",
"form-data": "^3.0.0",
"ldapjs": "^2.2.3",
"mock-require": "^3.0.3",
"mongodb": "^3.6.3",
"nanoid": "^3.1.21",
"nedb": "git+https://github.com:hyperledger/nedb.git",
"nedb-promises": "^4.1.0",
"proxyquire": "^2.1.3",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.1",
"uuid": "^8.3.1",
"ws": "^7.4.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bs58": "^4.0.1",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.8",
"@types/ldapjs": "^1.0.9",
"@types/mocha": "^8.0.3",
"@types/mock-require": "^2.0.0",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.11.5",
"@types/proxyquire": "^1.3.28",
"@types/rimraf": "^3.0.0",
"@types/sinon": "^9.0.10",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.34",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.7",
"mocha": "^8.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"supertest": "^6.0.0",
"ts-node": "^9.0.0",
"ts-sinon": "^2.0.1",
"typescript": "^4.2.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage",
"test",
"dist",
"**/*.d.ts",
"src/test"
],
"reporter": [
"html",
"text-summary"
],
"all": true,
"check-coverage": true,
"statements": 64,
"branches": 42,
"functions": 64,
"lines": 66
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
]
}
}