forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.07 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "pouchdb-monorepo",
"version": "7.0.0-prerelease",
"homepage": "http://pouchdb.com/",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "npm run build-modules && npm run build-test",
"build-node": "./bin/build-node.sh",
"build-modules": "node bin/build-modules.js",
"test-unit": "mocha tests/unit",
"test-node": "./bin/test-node.sh",
"test-component": "mocha tests/component",
"test-fuzzy": "TYPE=fuzzy npm run test",
"test-browser": "npm run build-test && node ./bin/test-browser.js",
"test-memleak": "mocha -gc tests/memleak",
"eslint": "eslint --cache bin/ packages/node_modules/**/src tests/",
"dev": "./bin/run-dev.sh",
"launch-dev-server": "node ./bin/dev-server.js",
"test": "./bin/run-test.sh",
"prepublish": "npm run build",
"release": "./bin/release.sh",
"install-jekyll": "./bin/install-jekyll.sh",
"build-site": "node ./bin/build-site.js",
"test-coverage": "./bin/test-coverage.sh",
"coverage": "COVERAGE=1 SERVER=pouchdb-server POUCHDB_SERVER_FLAGS=--in-memory PLUGINS=pouchdb-find ./bin/test-coverage.sh",
"report-coverage": "npm run test-coverage && istanbul-coveralls --no-rm",
"build-test": "npm run build-test-utils && npm run build-perf",
"build-test-utils": "browserify tests/integration/utils.js > tests/integration/utils-bundle.js",
"build-perf": "browserify tests/performance/index.js > tests/performance-bundle.js",
"set-version": "node bin/set-version.js",
"verify-build": "./bin/verify-build.sh",
"test-webpack": "./bin/test-webpack.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/pouchdb/pouchdb.git"
},
"dependencies": {
"abort-controller": "3.0.0",
"clone-buffer": "1.0.0",
"double-ended-queue": "2.1.0-0",
"fetch-cookie": "0.11.0",
"fruitdown": "1.0.2",
"immediate": "3.3.0",
"level": "6.0.1",
"level-codec": "9.0.2",
"level-write-stream": "1.0.0",
"leveldown": "5.6.0",
"levelup": "4.4.0",
"localstorage-down": "0.6.7",
"ltgt": "2.2.1",
"memdown": "1.4.1",
"node-fetch": "2.6.9",
"readable-stream": "1.1.14",
"spark-md5": "3.0.2",
"through2": "3.0.2",
"uuid": "8.3.2",
"vuvuzela": "1.0.3",
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"add-cors-to-couchdb": "0.0.6",
"body-parser": "1.19.0",
"browserify": "16.4.0",
"browserify-incremental": "3.1.1",
"builtin-modules": "3.1.0",
"bundle-collapser": "1.3.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"change-case": "4.0.1",
"child-process-promise": "2.2.1",
"cssmin": "0.4.3",
"denodeify": "1.2.1",
"derequire": "2.1.1",
"es3ify": "0.2.2",
"eslint": "8.7.0",
"express": "4.17.0",
"express-pouchdb": "4.2.0",
"find-requires": "1.0.0",
"glob": "7.1.5",
"http-server": "0.12.3",
"istanbul": "0.4.5",
"istanbul-coveralls": "1.0.3",
"less": "3.9.0",
"lodash.debounce": "4.0.8",
"lodash.flatten": "4.4.0",
"lodash.uniq": "4.5.0",
"marky": "1.2.0",
"median": "0.0.2",
"mkdirp": "0.5.1",
"mocha": "3.5.0",
"mockery": "2.1.0",
"ncp": "2.0.0",
"playwright": "1.36.1",
"pouchdb-express-router": "0.0.11",
"query-string": "6.10.1",
"replace": "1.2.1",
"rimraf": "2.7.1",
"rollup": "0.67.4",
"rollup-plugin-inject": "3.0.1",
"rollup-plugin-node-resolve": "4.2.4",
"rollup-plugin-replace": "1.2.1",
"seedrandom": "3.0.5",
"stream-to-promise": "1.1.1",
"tape": "4.13.0",
"terser": "4.8.0",
"throw-max-listeners-error": "1.0.1",
"ua-parser-js": "0.7.24",
"watch-glob": "0.1.3"
},
"// greenkeeper": [
"// chai-as-promised is pinned because of breaking changes in 6.0.0",
"// immediate is pinned to use the same version as lie for a smaller bundle",
"// readable-stream has breaking changes in 2.0.0",
"// stream-to-promise is pinned because there's a breaking change in 2.0.0"
],
"greenkeeper": {
"ignore": [
"chai-as-promised",
"immediate",
"readable-stream",
"stream-to-promise"
]
}
}