UNPKG

noflo

Version:

Flow-Based Programming environment for JavaScript

84 lines (83 loc) 2.12 kB
{ "name": "noflo", "description": "Flow-Based Programming environment for JavaScript", "keywords": [ "fbp", "workflow", "flow", "noflo" ], "author": "Henri Bergius <henri.bergius@iki.fi>", "version": "1.4.3", "license": "MIT", "engines": { "node": ">= 6" }, "dependencies": { "debug": "^4.0.1", "fbp": "^1.5.0", "fbp-graph": "^0.7.0", "fbp-manifest": "^0.2.7", "get-function-params": "^2.0.6" }, "devDependencies": { "@types/debug": "^4.1.5", "@types/node": "^14.14.2", "chai": "^4.0.0", "coffeescript": "^2.2.1", "coveralls": "^3.0.0", "eslint": "^7.7.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-plugin-import": "^2.22.0", "events": "^3.2.0", "flowtrace": "^0.1.8", "karma": "^5.1.1", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^3.1.0", "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", "mocha": "^8.1.3", "noflo-component-loader": "^0.4.0", "nyc": "^15.1.0", "path-browserify": "^1.0.1", "process": "^0.11.10", "replace": "^1.2.0", "typescript": "^4.0.2", "util": "^0.12.3", "webpack": "^5.0.0", "webpack-cli": "^4.0.0" }, "main": "./lib/NoFlo", "types": "./lib/NoFlo.d.ts", "bin": { "noflo": "./bin/noflo", "noflo-cache-preheat": "./bin/noflo-cache-preheat" }, "homepage": "http://noflojs.org/", "repository": { "type": "git", "url": "git://github.com/noflo/noflo.git" }, "scripts": { "lint": "eslint .", "build:node": "tsc", "build:browser": "webpack", "build": "npm run build:node && npm run build:browser", "postbuild": "replace 'node/events' 'events' lib -r", "pretest": "npm run lint && npm run build", "test:node": "nyc mocha --require spec/utils/inject.js spec", "test:browser": "karma start karma.config.js", "test": "npm run test:node && npm run test:browser" }, "docco_husky": { "output_dir": "docs", "project_name": "NoFlo" }, "nyc": { "include": [ "components/*.js", "lib/*.js", "lib/**/*.js" ] } }