-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.76 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
{
"name": "rx-pouch",
"version": "0.6.9",
"description": "Reactive PouchDB",
"repository": "https://github.com/mnewmedia/RxPouch",
"author": "Pablo Maurer",
"license": "MIT",
"private": false,
"keywords": [
"pouchdb",
"rxjs",
"couchdb"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": {
"./dist/index.js": "./dist/index-browser.js",
"./dist/index.es.js": "./dist/index-browser.es.js"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"test-watch": "npx jest --watch",
"docs-dev": "docz dev",
"docs-build": "docz build",
"update-example": "npm run build && cp -R ./dist/ ./examples/node/node_modules/rx-pouch/dist/"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"dependencies": {
"deep-array-filter": "^1.0.4",
"fast-sort": "^1.5.4",
"pouchdb-adapter-http": "^7.0.0",
"pouchdb-core": "^7.0.0",
"pouchdb-mapreduce": "^7.0.0",
"pouchdb-replication": "^7.0.0",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"rollup": "^1.12.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"peerDependencies": {
"rxjs": "6.x"
}
}