-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "vue-pouchdb-lite",
"version": "0.9.3",
"description": "Lite PouchDB plugin for Vuejs",
"main": "dist/main.js",
"module": "src/index.js",
"scripts": {
"watch": "yarn run webpack --watch",
"build": "yarn run webpack",
"lint": "yarn run eslint --fix",
"publish": "yarn publish"
},
"author": "Elmatou <elmatou@gmail.com>",
"bugs": {
"url": "https://github.com/elmatou/vue-pouchdb-lite/issues"
},
"homepage": "https://github.com/elmatou/vue-pouchdb-lite",
"license": "MIT",
"private": false,
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.1.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"peerDependencies": {
"pouchdb-browser": "^7.2.2",
"pouchdb-find": "^7.2.2",
"pouchdb-live-find": "^0.4.0"
},
"optionalDependencies": {
"pouchdb-authentication": "^1.1.3"
}
}