From e4c7bafd276049c805039b240e0a83346c31f41b Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 20 Sep 2020 16:55:36 +0200 Subject: Initial release --- package.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..bf55d24 --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "grafn", + "version": "1.0.0", + "description": "Graph + Fn: Execute functions as a graph", + "main": "lib/grafn", + "scripts": { + "document": "jsdoc2md lib/**/*.js > doc/README.md; tap -R markdown > doc/COVERAGE.md", + "lint": "eslint .", + "test": "tap" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitlab.com/rbdr/grafn.git" + }, + "bugs": { + "url": "https://gitlab.com/rbdr/grafn/issues" + }, + "author": "Rubén Beltrán del Río ", + "license": "Apache-2.0", + "devDependencies": { + "@hapi/eslint-config-hapi": "^13.0.2", + "@hapi/eslint-plugin-hapi": "^4.3.6", + "eslint": "^7.9.0", + "jsdoc-to-markdown": "^6.0.1", + "tap": "^14.10.8" + }, + "keywords": [ + "graph", + "async", + "flow" + ] +} -- cgit