championswimmer/mockstorage

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "mockstorage",
  "version": "0.1.4",
  "description": "A mock storage to emulate localStorage and sessionStorage in Node.js",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "prebuild": "rm -rf dist/*",
    "build": "tsc",
    "pretest": "npm run build",
    "test": "mocha --compilers ts:ts-node/register",
    "cover": "nyc --reporter lcov npm test",
    "predoc": "rm -rf docs; mkdir -p docs;",
    "doc": "typedoc --ignoreCompilerErrors --mode modules --name mockstorage --out docs",
    "postdoc": "touch docs/.nojekyll"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/championswimmer/mockstorage.git"
  },
  "keywords": [
    "mockstorage",
    "localstorage",
    "sessionstorage",
    "nodejs",
    "typescript"
  ],
  "author": "Arnav Gupta <championswimmer@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/championswimmer/mockstorage/issues"
  },
  "homepage": "https://github.com/championswimmer/mockstorage#readme",
  "devDependencies": {
    "@types/chai": "^4.0.1",
    "@types/mocha": "^2.2.41",
    "chai": "^4.1.0",
    "mocha": "^3.4.2",
    "nyc": "^11.0.3",
    "ts-node": "^3.3.0",
    "tslint": "^5.5.0",
    "typedoc": "^0.7.1",
    "typescript": "^2.4.2"
  },
  "engines": {
    "node": "8",
    "npm": "5"
  }
}