Comparing version 1.5.0 to 1.6.0
@@ -0,1 +1,5 @@ | ||
# fbp 1.6.0 - released 03.11.2017 | ||
* Removed support for deprecated `EXPORT` keyword | ||
# fbp 1.5.0 - released 06.07.2016 | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "fbp", | ||
"description": "Parser for the .fbp flow definition language", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"repository": { | ||
@@ -17,12 +17,15 @@ "type": "git", | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-coffee": "^1.0.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-mocha-phantomjs": "^3.0.0", | ||
"grunt-mocha-test": "^0.12.7", | ||
"grunt-noflo-browser": "^0.1.11", | ||
"chai": "^4.0.2", | ||
"coveralls": "^3.0.0", | ||
"grunt": "^1.0.1", | ||
"grunt-contrib-coffee": "^2.0.0", | ||
"grunt-contrib-watch": "^1.0.0", | ||
"grunt-mocha-phantomjs": "^4.0.0", | ||
"grunt-mocha-test": "^0.13.2", | ||
"grunt-noflo-browser": "^1.4.0", | ||
"grunt-peg": "^2.0.1", | ||
"grunt-yaml": "^0.4.2", | ||
"mocha": "^2.5.3", | ||
"json-loader": "^0.5.4", | ||
"mocha": "^4.0.0", | ||
"nyc": "^11.3.0", | ||
"tv4": "^1.2.7" | ||
@@ -32,3 +35,3 @@ }, | ||
"scripts": { | ||
"test": "grunt test" | ||
"test": "nyc grunt test" | ||
}, | ||
@@ -38,3 +41,8 @@ "main": "./lib/fbp", | ||
"fbp": "./bin/fbp" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"lib/*.js" | ||
] | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
FBP flow definition language parser [![Build Status](https://travis-ci.org/flowbased/fbp.png?branch=master)](https://travis-ci.org/flowbased/fbp) [![Build status](https://ci.appveyor.com/api/projects/status/cye5ylmhfybnb8t9)](https://ci.appveyor.com/project/bergie/fbp) | ||
FBP flow definition language parser [![Build Status](https://travis-ci.org/flowbased/fbp.png?branch=master)](https://travis-ci.org/flowbased/fbp) [![Build status](https://ci.appveyor.com/api/projects/status/cye5ylmhfybnb8t9)](https://ci.appveyor.com/project/bergie/fbp) [![Greenkeeper badge](https://badges.greenkeeper.io/flowbased/fbp.svg)](https://greenkeeper.io/) [![Coverage Status](https://coveralls.io/repos/github/flowbased/fbp/badge.svg?branch=master)](https://coveralls.io/github/flowbased/fbp?branch=master) | ||
=================================== | ||
@@ -3,0 +3,0 @@ |
@@ -10,2 +10,6 @@ { | ||
"properties": { | ||
"caseSensitive": { | ||
"type": "boolean", | ||
"description": "Whether the graph port identifiers should be treated as case-sensitive" | ||
}, | ||
"properties": { | ||
@@ -17,3 +21,31 @@ "type": "object", | ||
"name": { | ||
"type": "string" | ||
"type": "string", | ||
"description": "Name of the graph" | ||
}, | ||
"environment": { | ||
"type": "object", | ||
"description": "Information about the execution environment for the graph", | ||
"additionalProperties": true, | ||
"required": [ | ||
"type" | ||
], | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"description": "Runtime type the graph is for", | ||
"example": "noflo-nodejs" | ||
}, | ||
"content": { | ||
"type": "string", | ||
"description": "HTML fixture for browser-based graphs" | ||
} | ||
} | ||
}, | ||
"description": { | ||
"type": "string", | ||
"description": "Graph description" | ||
}, | ||
"icon": { | ||
"type": "string", | ||
"description": "Name of the icon that can be used for depicting the graph" | ||
} | ||
@@ -41,3 +73,14 @@ } | ||
"type": "object", | ||
"additionalProperties": true | ||
"additionalProperties": true, | ||
"required": [], | ||
"properties": { | ||
"x": { | ||
"type": "integer", | ||
"description": "X coordinate of a graph inport" | ||
}, | ||
"y": { | ||
"type": "integer", | ||
"description": "Y coordinate of a graph inport" | ||
} | ||
} | ||
} | ||
@@ -67,3 +110,14 @@ } | ||
"type": "object", | ||
"additionalProperties": true | ||
"required": [], | ||
"additionalProperties": true, | ||
"properties": { | ||
"x": { | ||
"type": "integer", | ||
"description": "X coordinate of a graph outport" | ||
}, | ||
"y": { | ||
"type": "integer", | ||
"description": "Y coordinate of a graph outport" | ||
} | ||
} | ||
} | ||
@@ -74,9 +128,2 @@ } | ||
}, | ||
"exports": { | ||
"type": [ | ||
"array", | ||
"undefined" | ||
], | ||
"description": "Deprecated, use inports and outports instead" | ||
}, | ||
"groups": { | ||
@@ -99,3 +146,10 @@ "type": "array", | ||
"metadata": { | ||
"additionalProperties": true | ||
"type": "object", | ||
"additionalProperties": true, | ||
"required": [], | ||
"properties": { | ||
"description": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
@@ -118,3 +172,14 @@ } | ||
"type": "object", | ||
"additionalProperties": true | ||
"additionalProperties": true, | ||
"required": [], | ||
"properties": { | ||
"x": { | ||
"type": "integer", | ||
"description": "X coordinate of a graph node" | ||
}, | ||
"y": { | ||
"type": "integer", | ||
"description": "Y coordinate of a graph node" | ||
} | ||
} | ||
} | ||
@@ -165,3 +230,19 @@ } | ||
"type": "object", | ||
"additionalProperties": true | ||
"additionalProperties": true, | ||
"required": [], | ||
"properties": { | ||
"route": { | ||
"type": "integer", | ||
"description": "Route identifier of a graph edge" | ||
}, | ||
"schema": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "JSON schema associated with a graph edge" | ||
}, | ||
"secure": { | ||
"type": "boolean", | ||
"description": "Whether edge data should be treated as secure" | ||
} | ||
} | ||
} | ||
@@ -168,0 +249,0 @@ } |
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
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 too big to display
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
155785
2980
14