-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 970 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
{
"name": "@fabric/matrix",
"version": "0.1.0",
"description": "Matrix connectivity for Fabric.",
"main": "services/matrix.js",
"scripts": {
"coverage": "c8 npm test",
"make:coverage": "npm run coverage && c8 report --reporter html",
"report:coverage": "npm run make:coverage && c8 report --reporter=text-lcov > reports/coverage.lcov",
"start": "node scripts/agent.js",
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/fabric-matrix.git"
},
"keywords": [
"fabric",
"bitcoin",
"matrix",
"chat",
"p2p"
],
"author": "Fabric Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/fabric-matrix/issues"
},
"homepage": "https://github.com/FabricLabs/fabric-matrix#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#master",
"matrix-js-sdk": "17.1.0"
},
"devDependencies": {
"mocha": "10.0.0"
}
}