{
  "name": "noflo-runtime-base",
  "description": "Base library for building NoFlo runtimes",
  "version": "0.13.1",
  "author": {
    "name": "Henri Bergius",
    "email": "henri.bergius@iki.fi"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/noflo/noflo-runtime-base.git"
  },
  "license": "MIT",
  "devDependencies": {
    "buffer": "^6.0.1",
    "chai": "^4.0.0",
    "coveralls": "^3.0.0",
    "eslint": "^7.7.0",
    "eslint-config-airbnb-base": "^14.2.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-mocha": "^8.0.0",
    "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",
    "noflo-core": ">= 0.4.0",
    "noflo-webpack-config": "^2.0.1",
    "nyc": "^15.1.0",
    "path-browserify": "^1.0.1",
    "process": "^0.11.10",
    "util": "^0.12.3",
    "webpack": "^5.0.0",
    "webpack-cli": "^4.0.0"
  },
  "keywords": [
    "noflo"
  ],
  "scripts": {
    "lint": "eslint src",
    "build": "noflo-cache-preheat && webpack --config ./webpack.config.js",
    "pretest": "npm run lint && npm run build",
    "test:nodejs": "nyc mocha --require spec/utils/inject.js spec/*.js",
    "test:browser": "karma start node_modules/noflo-webpack-config/karma.config.js",
    "test": "npm run test:nodejs && npm run test:browser"
  },
  "main": "./src/Base.js",
  "dependencies": {
    "debounce": "^1.1.0",
    "debug": "^4.0.0",
    "flowtrace": "^0.1.3",
    "json-stringify-safe": "^5.0.1",
    "noflo": "^1.4.0"
  },
  "nyc": {
    "include": [
      "src/*.js",
      "src/protocol/*.js"
    ]
  }
}
