digitalproperty-network
Advanced tools
Comparing version 0.2.3-20180314171154 to 0.2.3-20180326082813
{ | ||
"engines": { | ||
"composer": "^0.18.0" | ||
"composer": "^0.19.0" | ||
}, | ||
"name": "digitalproperty-network", | ||
"version": "0.2.3-20180314171154", | ||
"version": "0.2.3-20180326082813", | ||
"description": "Digital Property Network", | ||
@@ -15,3 +15,3 @@ "networkImage": "https://hyperledger.github.io/composer-sample-networks/packages/digitalproperty-network/networkimage.svg", | ||
"postlint": "npm run licchk", | ||
"licchk": "license-check", | ||
"licchk": "license-check-and-add", | ||
"postlicchk": "npm run doc", | ||
@@ -35,11 +35,11 @@ "doc": "jsdoc --pedantic --recurse -c jsdoc.json", | ||
"chai": "^3.5.0", | ||
"composer-admin": "^0.18.0-0", | ||
"composer-cli": "^0.18.0-0", | ||
"composer-client": "^0.18.0-0", | ||
"composer-common": "^0.18.0-0", | ||
"composer-connector-embedded": "^0.18.0-0", | ||
"composer-admin": "^0.19.0-0", | ||
"composer-cli": "^0.19.0-0", | ||
"composer-client": "^0.19.0-0", | ||
"composer-common": "^0.19.0-0", | ||
"composer-connector-embedded": "^0.19.0-0", | ||
"eslint": "^3.6.1", | ||
"istanbul": "^0.4.5", | ||
"jsdoc": "^3.5.5", | ||
"license-check": "^1.1.5", | ||
"license-check-and-add": "~2.0.6", | ||
"mkdirp": "^0.5.1", | ||
@@ -52,15 +52,29 @@ "mocha": "^3.2.0", | ||
}, | ||
"license-check-config": { | ||
"src": [ | ||
"**/*.js", | ||
"!./coverage/**/*", | ||
"!./node_modules/**/*", | ||
"!./out/**/*", | ||
"!./scripts/**/*" | ||
"license-check-and-add-config": { | ||
"folder": ".", | ||
"license": "LICENSE.txt", | ||
"exact_paths_method": "EXCLUDE", | ||
"exact_paths": [ | ||
"composer-logs", | ||
"dist", | ||
"node_modules", | ||
"out", | ||
".git" | ||
], | ||
"path": "header.txt", | ||
"blocking": true, | ||
"logInfo": false, | ||
"logError": true | ||
"file_type_method": "EXCLUDE", | ||
"file_types": [ | ||
".md", | ||
".yml" | ||
], | ||
"insert_license": false, | ||
"license_formats": { | ||
"js|cto|acl": { | ||
"prepend": "/*", | ||
"append": " */", | ||
"eachLine": { | ||
"prepend": " * " | ||
} | ||
} | ||
} | ||
} | ||
} |
@@ -63,3 +63,3 @@ /* | ||
// Install the Composer runtime for the new business network | ||
await adminConnection.install(businessNetworkDefinition.getName()); | ||
await adminConnection.install(businessNetworkDefinition); | ||
@@ -75,3 +75,3 @@ // Start the business network and configure an network admin identity | ||
}; | ||
const adminCards = await adminConnection.start(businessNetworkDefinition, startOptions); | ||
const adminCards = await adminConnection.start(businessNetworkDefinition.getName(), businessNetworkDefinition.getVersion(), startOptions); | ||
@@ -78,0 +78,0 @@ // Import the network admin identity for us to use |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33952