-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FABN-909] publish empty common module
- add new common package - link as dependancy - publish empty package Change-Id: Ib7bd444fe273b15949743441b7f67108bf5c9975 Signed-off-by: [email protected] <[email protected]>
- Loading branch information
Showing
9 changed files
with
140 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# OS generated files # | ||
.DS_Store | ||
|
||
# Node Files # | ||
/node_modules | ||
npm-debug.log | ||
|
||
# Coverage # | ||
/coverage | ||
|
||
# Test Files # | ||
/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Hyperledger Fabric Common for Node.js | ||
|
||
SDK for writing node.js applications to interact with [Hyperledger Fabric](http://hyperledger-fabric.readthedocs.io/en/latest/). | ||
|
||
This package encapsulates the common code used by the `fabric-ca-client`, `fabric-client` packages. | ||
|
||
For application developer documentations, please visit [https://fabric-sdk-node.github.io/](https://fabric-sdk-node.github.io/) | ||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Copyright 2018 IBM All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Copyright 2018 IBM All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"name": "fabric-commmon", | ||
"version": "1.3.0-snapshot", | ||
"description" : "This package encapsulates the common code used by the `fabric-ca-client`, `fabric-client` packages.", | ||
"keywords" :[ | ||
"blockchain", | ||
"hyperledger" | ||
], | ||
"main": "index.js", | ||
"repository": { | ||
"type": "gerrit", | ||
"url": "https://gerrit.hyperledger.org/r/#/admin/projects/fabric-sdk-node" | ||
}, | ||
"homepage": "https://www.hyperledger.org/projects/fabric", | ||
"author": { | ||
"name": "hyperledger/fabric", | ||
"email": "[email protected]" | ||
}, | ||
"scripts": { | ||
"test": "nyc mocha --recursive -t 10000" | ||
}, | ||
"dependencies": { | ||
}, | ||
"devDependencies": { | ||
"mocha": "^5.2.0", | ||
"nyc": "^12.0.2", | ||
"rewire": "^4.0.1", | ||
"sinon": "^5.0.7" | ||
}, | ||
"nyc": { | ||
"exclude": [ | ||
"coverage/**", | ||
"test/**" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"html" | ||
], | ||
"cache": true, | ||
"all": true, | ||
"check-coverage": true, | ||
"statements": 100, | ||
"branches": 100, | ||
"functions": 100, | ||
"lines": 100 | ||
}, | ||
"license": "Apache-2.0", | ||
"licenses": [ | ||
{ | ||
"type": "Apache-2.0", | ||
"url": "https://github.com/hyperledger/fabric/blob/master/LICENSE" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Copyright 2018 IBM All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters