cyclejs/cycle-core

View on GitHub
http/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@cycle/http",
  "version": "15.4.0",
  "description": "A Cycle.js Driver for making HTTP requests",
  "main": "lib/cjs/index.js",
  "module": "lib/es6/index.js",
  "typings": "lib/cjs/index.d.ts",
  "license": "MIT",
  "repository": "https://github.com/cyclejs/cyclejs/tree/master/http",
  "homepage": "https://cycle.js.org",
  "bugs": "https://github.com/cyclejs/cyclejs/issues",
  "contributors": [
    {
      "name": "Andre Staltz",
      "email": "andre@staltz.com"
    },
    {
      "name": "Tylor Steinberger",
      "email": "tlsteinberger167@gmail.com"
    }
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=6"
  },
  "dependencies": {
    "@cycle/run": "^5.2.0",
    "@types/superagent": "3.8.4",
    "most": "^1.7.3",
    "rxjs": "^6.3.3",
    "superagent": "^3.8.3",
    "xstream": "*"
  },
  "devDependencies": {
    "@cycle/isolate": "^5.0.0",
    "@cycle/rxjs-run": "^10.2.0",
    "@types/body-parser": "~1.17.0",
    "@types/cookie-parser": "~1.4.1",
    "@types/express": "~4.17.0",
    "@types/mocha": "~5.2.7",
    "@types/node": "10.12.x",
    "body-parser": "~1.19.0",
    "cookie-parser": "~1.4.4",
    "deepmerge": "~4.0.0",
    "es6-map": "^0.1.5",
    "express": "~4.17.1",
    "isarray": "~2.0.5",
    "karma": "~4.2.0",
    "karma-browserstack-launcher": "~1.5.0",
    "karma-chrome-launcher": "~3.0.0",
    "karma-firefox-launcher": "~1.1.0",
    "karma-mocha": "~1.3.0",
    "karma-typescript": "~4.1.1",
    "mocha": "~6.2.0",
    "symbol-observable": "^1.2.0",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "=3.2.4",
    "xstream": "11.x"
  },
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/cyclejs"
  },
  "scripts": {
    "build": "pnpm run build-cjs && pnpm run build-es6",
    "build-cjs": "tsc --module commonjs --outDir ./lib/cjs",
    "build-es6": "tsc --module es6 --outDir ./lib/es6",
    "lint": "tslint --project tsconfig.lint.json --config ../tslint.json",
    "docs": "cd .. && node .scripts/make-api-docs.js http",
    "changelog": "cd .. && node .scripts/update-changelogs.js http",
    "test-node": "mocha test/node.ts --require ts-node/register --exit",
    "test-browser": "pnpm run start-test-support-server && karma start && pnpm run stop-test-support-server",
    "start-test-support-server": "PORT=8070 ts-node test/support/run-server.ts &",
    "stop-test-support-server": "kill $(ps aux | grep cyclejs | grep support | grep server | grep -v grep | awk '{ print $2 }') || true",
    "test": "pnpm run test-node && pnpm run test-browser",
    "test-ci": "CI=true ../.scripts/retry.sh pnpm test",
    "test-live": "LIVE=true karma start --watch",
    "prepublishOnly": "pnpm run build && pnpm test"
  }
}