cyclejs/cycle-core

View on GitHub
history/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@cycle/history",
  "version": "9.0.0",
  "description": "The standard history driver for Cycle.js",
  "main": "lib/cjs/index.js",
  "module": "lib/es6/index.js",
  "typings": "lib/cjs/index.d.ts",
  "types": "lib/cjs/index.d.ts",
  "directories": {
    "test": "test"
  },
  "repository": "https://github.com/cyclejs/cyclejs/tree/master/history",
  "author": "Tylor Steinberger",
  "license": "MIT",
  "bugs": "https://github.com/cyclejs/cyclejs/issues",
  "homepage": "https://cycle.js.org",
  "dependencies": {
    "@cycle/run": "^5.2.0",
    "history": "^5.1.0",
    "xstream": "*"
  },
  "devDependencies": {
    "@cycle/rxjs-run": "^10.2.0",
    "@types/mocha": "~5.2.7",
    "@types/node": "^10.12.11",
    "@types/sinon": "^5.0.7",
    "deepmerge": "~4.0.0",
    "karma": "~4.2.0",
    "karma-browserstack-launcher": "~1.5.1",
    "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",
    "rxjs": "6.3.x",
    "sinon": "^7.1.1",
    "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 history",
    "changelog": "cd .. && node .scripts/update-changelogs.js history",
    "test-node": "mocha --require ts-node/register test/node/*.ts --exit",
    "test-browser": "karma start",
    "test": "pnpm run test-node && pnpm run test-browser",
    "test-ci": "CI=true ../.scripts/retry.sh pnpm test",
    "test-live": "LIVE=true pnpm test",
    "prepublishOnly": "pnpm run build && pnpm test"
  }
}