rootstrap/mobx-session

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mobx-session",
  "version": "1.0.0",
  "description": "Save your session with MobX, using IndexedDB, WebSQL, or localStorage",
  "main": "dist/index.js",
  "scripts": {
    "build": "npm run clean && babel src --out-dir dist",
    "test": "jest /src/__tests__",
    "test:watch": "jest /src/__tests__ --watch",
    "test:cover": "npm run test -- --coverage",
    "lint": "eslint src",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rootstrap/mobx-session.git"
  },
  "keywords": [
    "mobx",
    "react",
    "session",
    "authentication",
    "react-router",
    "localStorage"
  ],
  "author": "Rootstrap",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rootstrap/mobx-session/issues"
  },
  "homepage": "https://github.com/rootstrap/mobx-session#readme",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/plugin-proposal-class-properties": "^7.4.4",
    "@babel/polyfill": "^7.4.4",
    "@babel/preset-env": "^7.4.5",
    "babel-core": "^6.26.3",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^24.8.0",
    "babel-loader": "^8.0.6",
    "babel-preset-latest": "^6.24.1",
    "babel-preset-stage-1": "^6.24.1",
    "babel-register": "^6.26.0",
    "coveralls": "^3.0.4",
    "eslint": "^5.16.0",
    "eslint-plugin-import": "^2.17.3",
    "jest": "^24.8.0",
    "mobx": "^5.10.1",
    "rimraf": "^2.6.3",
    "webpack": "^4.33.0"
  },
  "dependencies": {
    "localforage": "^1.7.3"
  },
  "peerDependencies": {
    "mobx": "^5.10.1"
  }
}