onionskin/onionskin

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "onionskin",
  "version": "1.1.7",
  "description": "Multilayer Cache Manager for JavaScript",
  "main": "src/onionskin.js",
  "scripts": {
    "test": "mocha -- test/*_test.js test/*/*_test.js test/*/*/*_test.js"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/onionskin/onionskin.git"
  },
  "keywords": [
    "onionskin",
    "stash",
    "stash.js",
    "cache",
    "manager",
    "library",
    "javascript",
    "multilayer",
    "redis",
    "memcached",
    "localStorage",
    "ephemeral",
    "indexeddb"
  ],
  "author": "Tadeu Zagallo <tadeuzagallo@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/onionskin/onionskin/issues"
  },
  "devDependencies": {
    "chai": "~1.9.1",
    "mocha": "~1.18.2"
  },
  "dependencies": {
    "bluebird": "~2.3.11"
  },
  "testling": {
    "harness": "mocha-bdd",
    "files": ["test/test_helper.js", "test/*_test.js", "test/*/*_test.js", "test/*/*/*_test.js"],
    "browsers": [
      "ie/9..latest",
      "chrome/22..latest",
      "firefox/16..latest",
      "safari/5..latest",
      "opera/11.0..latest",
      "iphone/5..latest",
      "ipad/5..latest",
      "android-browser/4..latest"
    ]
  }
}