-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "pouch-vue",
"version": "0.3.5",
"description": "PouchDB bindings for Vue.js",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"test:unit": "jest --no-cache"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/tests/global-mocks.js"
],
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com:MDSLKTR/pouch-vue.git"
},
"author": "Simon Kunz",
"license": "MIT",
"bugs": {
"url": "https://github.com/MDSLKTR/pouch-vue/issues"
},
"files": [
"lib",
"types",
"src",
"rollup.config.js"
],
"keywords": [
"pouchdb",
"vue",
"vue.js",
"couchdb",
"pouch-vue"
],
"homepage": "https://github.com/MDSLKTR/pouch-vue",
"dependencies": {
"or": "^0.2.0",
"pouchdb-live-find": "^0.4.0",
"pouchdb-utils": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@vue/babel-preset-app": "^5.0.8",
"@vue/test-utils": "^2.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"pouchdb-authentication": "^1.1.3",
"pouchdb-node": "^8.0.1",
"rollup": "^4.5.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.1",
"vue": "^3.3.8",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.7.15"
}
}