Skip to content

Commit

Permalink
refactor: package versions alignment, package files specified
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed May 19, 2020
1 parent 3e4ba0a commit df7a9d5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 4 additions & 1 deletion packages/bif-cmd-api-server/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "@hyperledger-labs/bif-cmd-api-server",
"version": "0.0.1",
"version": "0.2.0",
"description": "API server that combines and exposes all the functionality of a BIF deployment through a unified REST API interface.",
"bin": {
"bifapi": "./dist/lib/main/typescript/cmd/bif-api.js"
},
"files": [
"dist/*"
],
"main": "dist/bif-core-api.node.umd.js",
"mainMinified": "dist/bif-core-api.node.umd.min.js",
"module": "dist/lib/main/typescript/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/bif-cockpit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger-labs/bif-cockpit",
"version": "0.0.1",
"version": "0.2.0",
"files": [
"www/*"
],
Expand Down
7 changes: 4 additions & 3 deletions packages/bif-core-api/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "@hyperledger-labs/bif-core-api",
"version": "0.0.1",
"version": "0.2.0",
"description": "Contains type definitions/interfaces for the kernel of the codebase. Kept separate from the implementation so that it is easier to use it as a dependency.",
"main": "dist/bif-core-api.node.umd.js",
"mainMinified": "dist/bif-core-api.node.umd.min.js",
"browser": "dist/bif-core-api.web.umd.js",
"browserMinified": "dist/bif-core-api.web.umd.min.js",
"module": "dist/lib/main/typescript/index.js",
"types": "dist/types/main/typescript/index.d.ts",
"scripts": {
},
"files": [
"dist/*"
],
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down
7 changes: 4 additions & 3 deletions packages/bif-plugin-kv-storage-memory/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "@hyperledger-labs/bif-plugin-kv-storage-memory",
"version": "0.0.1",
"version": "0.2.0",
"description": "Key/value storage plugin that has an in-memory backend. Only makes sense to use it for local development/demo environments where there is only a single BIF node running in your consortium.",
"main": "dist/bif-plugin-kv-storage-memory.node.umd.js",
"mainMinified": "dist/bif-plugin-kv-storage-memory.node.umd.min.js",
"browser": "dist/bif-plugin-kv-storage-memory.web.umd.js",
"browserMinified": "dist/bif-plugin-kv-storage-memory.web.umd.min.js",
"module": "dist/lib/main/typescript/index.js",
"types": "dist/types/main/typescript/index.d.ts",
"scripts": {
},
"files": [
"dist/*"
],
"engines": {
"node": ">=10",
"npm": ">=6"
Expand Down

0 comments on commit df7a9d5

Please sign in to comment.