axway-flow-schema
Advanced tools
Comparing version 3.0.0 to 4.0.0
{ | ||
"name": "axway-flow-schema", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"description": "Axway Flow Schema.", | ||
@@ -29,2 +29,5 @@ "homepage": "https://platform.axway.com", | ||
], | ||
"dependencies": { | ||
"@axway/api-builder-config": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
@@ -45,3 +48,3 @@ "ajv": "^5.3.0" | ||
"test:watch": "npm test -- --watch", | ||
"posttest": "nyc check-coverage --lines 80 --branches 80 --functions 80 && shx rm -rf .nyc_output", | ||
"posttest": "nyc check-coverage --statements 85 --lines 85 --branches 85 --functions 90 && shx rm -rf .nyc_output", | ||
"check:dependencies": "npm run check:used && npm run check:unused", | ||
@@ -48,0 +51,0 @@ "check:used": "dependency-check ./package.json", |
@@ -0,4 +1,10 @@ | ||
const apiBuilderConfig = require('@axway/api-builder-config'); | ||
const v2 = require('../flowschema.json'); | ||
const v3 = require('../flowschema-v3.json'); | ||
exports = module.exports = { v2, v3 }; | ||
if (apiBuilderConfig.flags.enableAuthorizationInFlows) { | ||
const v4 = require('../flowschema-v4.json'); | ||
exports = module.exports = { v2, v3, v4 }; | ||
} else { | ||
exports = module.exports = { v2, v3 }; | ||
} |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
65059
7
1128
0
1
+ Added@axway/api-builder-config@2.0.8(transitive)