-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.71 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.71 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "rxdb-utils",
"version": "2.0.0-beta.2",
"author": "Rafa Mel",
"description": "RxDB's missing pieces",
"keywords": [
"rxdb",
"filtered",
"replication",
"utils",
"pouchdb",
"couchdb",
"offline",
"realtime"
],
"engines": {
"node": ">=12"
},
"main": "pkg/dist/index.js",
"types": "pkg/dist/index.d.ts",
"scripts": {
"commit": "kpo commit --",
"semantic": "kpo semantic --",
"fix": "kpo fix --",
"fix:scripts": "kpo fix:scripts --",
"lint": "kpo lint --",
"lint:md": "kpo lint:md --",
"lint:scripts": "kpo lint:scripts --",
"clean": "kpo clean --",
"clean:build": "kpo clean:build --",
"clean:modules": "kpo clean:modules --",
"prepublishOnly": "kpo prepublishOnly --",
"preversion": "kpo preversion --",
"version": "kpo version --",
"build": "kpo build --",
"build:transpile": "kpo build:transpile --",
"build:types": "kpo build:types --",
"fix:code": "kpo fix:code --",
"lint:code": "kpo lint:code --",
"lint:types": "kpo lint:types --",
"test": "kpo test --",
"verify": "kpo verify --",
"validate": "kpo validate --",
"docs": "kpo docs --",
"build:pack": "kpo build:pack --",
"build:static": "kpo build:static --",
"release": "kpo release --",
"watch": "kpo watch --",
"watch:test": "kpo watch:test --"
},
"license": "MIT",
"homepage": "https://github.com/rafamel/rxdb-utils",
"repository": {
"type": "git",
"url": "https://github.com/rafamel/rxdb-utils"
},
"bugs": {
"url": "https://github.com/rafamel/rxdb-utils/issues"
},
"devDependencies": {
"@pika/pack": "^0.4.0",
"@pika/plugin-build-web": "^0.8.3",
"@pika/plugin-standard-pkg": "^0.8.3",
"@riseup/library": "^0.5.0",
"@riseup/tooling": "^0.5.0",
"@types/jest": "^25.1.3",
"@zerollup/ts-transform-paths": "^1.7.3",
"coveralls": "^3.0.7",
"husky": "^4.2.3",
"kpo": "^0.11.1",
"onchange": "^6.0.0",
"pouchdb-adapter-http": "^7.2.1",
"pouchdb-adapter-memory": "^7.2.1",
"pouchdb-server": "^4.2.0",
"promist": "^2.0.2",
"rxdb": "8.6.0",
"rxjs": "^6.3.3",
"typescript": "^3.6.4"
},
"dependencies": {
"lodash.flattendeep": "^4.4.0",
"lodash.merge": "^4.6.1",
"object-hash": "^2.0.3",
"uuid": "^7.0.2"
},
"peerDependencies": {
"rxdb": ">= 8.0.0 < 8.7.0",
"rxjs": "6.x"
},
"husky": {
"hooks": {
"pre-commit": "kpo verify"
}
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__mocks__/**/*",
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-web"
]
]
}
}