This repository has been archived on 2020-08-24. You can view files and clone it, but cannot push or open issues or pull requests.

30 lines
629 B
JSON

{
"name": "pouchdb-attachmentproxy",
"version": "1.0.0",
"description": "A pouchdb plugin to intercept and redirect document attachments.",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "karmatic 'spec/*.spec.js'"
},
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
"license": "Apache-2.0",
"dependencies": {
"pouchdb-core": "~7.1.1"
},
"devDependencies": {
"husky": "^3.0.1",
"karmatic": "^1.3.1",
"pouchdb": "~7.1.1",
"pouchdb-adapter-memory": "^7.1.1",
"webpack": "^4.37.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}