AutoScheduleJS/userstate-manager

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@autoschedule/userstate-manager",
  "version": "0.0.0-development",
  "description": "User-state manager",
  "main": "lib/index.js",
  "module": "es/index.js",
  "types": "es/index.d.ts",
  "scripts": {
    "ava": "ava build/**/*.test.js",
    "test": "tslint -p ./ && tsc && nyc --reporter=lcov npm run ava",
    "test:codecov": "tslint -p ./ && tsc && nyc npm run ava",
    "build:ts": "tsc -p tsconfig.build.json",
    "build": "npm run build:ts && npm run build:ts -- -m es6 --outDir es",
    "doc": "npm run build && typedoc --out docs/ dist/",
    "prepublishOnly": "npm run build",
    "semantic-release": "semantic-release",
    "travis-deploy-once": "travis-deploy-once",
    "watch:ts": "tsc -w",
    "watch:ava": "ava -w build/**/*.test.js",
    "watch:test": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Ava\" -c \"blue.bold,magenta.bold\" \"npm run watch:ts\" \"npm run watch:ava\""
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AutoScheduleJS/userstate-manager.git"
  },
  "private": false,
  "publishConfig": {
    "tag": "latest",
    "access": "public"
  },
  "keywords": [
    "state",
    "autoschedule"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AutoScheduleJS/userstate-manager/issues"
  },
  "homepage": "https://github.com/AutoScheduleJS/userstate-manager#readme",
  "sideEffects": false,
  "dependencies": {
    "@autoschedule/queries-fn": "^6.2.1",
    "ramda": "^0.25.0",
    "lokijs": "^1.5.5",
    "intervals-fn": "^3.0.2",
    "moment": "^2.21.0",
    "rxjs": "^5.5.7"
  },
  "devDependencies": {
    "@semantic-release/release-notes-generator": "^6.0.12",
    "@types/lokijs": "^1.5.2",
    "@types/ramda": "github:types/npm-ramda#dist",
    "ava": "^0.25.0",
    "concurrently": "^3.6.0",
    "cz-conventional-changelog": "^2.1.0",
    "nyc": "^12.0.2",
    "prettier": "^1.13.5",
    "semantic-release": "^15.6.0",
    "travis-deploy-once": "^5.0.0",
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.13.0",
    "typedoc": "^0.11.1",
    "typescript": "~2.8.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "publish": [
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}