forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.17 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
127
128
129
130
{
"name": "pouchdb-monorepo",
"version": "6.2.1-prerelease",
"homepage": "http://pouchdb.com/",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "npm run build-modules && npm run build-test",
"build-node": "bash bin/build-node.sh",
"build-modules": "node bin/build-modules.js",
"test-unit": "mocha tests/unit",
"test-node": "npm run build-node && bash 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-coverage": "bash bin/test-coverage.sh",
"test-memleak": "mocha -gc tests/memleak",
"eslint": "eslint bin/ packages/node_modules/**/src tests/",
"dev": "bash bin/run-dev.sh",
"launch-dev-server": "node ./bin/dev-server.js",
"test": "bash bin/run-test.sh",
"posttest": "npm run eslint",
"prepublish": "npm run build",
"release": "sh bin/release.sh",
"install-jekyll": "sh bin/install-jekyll.sh",
"publish-site": "sh bin/publish-site.sh",
"build-site": "node ./bin/build-site.js",
"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": "sh bin/verify-build.sh",
"test-webpack": "bash bin/test-webpack.sh"
},
"dependencies": {
"argsarray": "0.0.1",
"buffer-from": "0.1.1",
"clone-buffer": "1.0.0",
"debug": "2.6.4",
"double-ended-queue": "2.1.0-0",
"fruitdown": "1.0.2",
"immediate": "3.0.6",
"inherits": "2.0.3",
"level-codec": "7.0.0",
"level-write-stream": "1.0.0",
"levelup": "1.3.6",
"lie": "3.1.1",
"localstorage-down": "0.6.7",
"ltgt": "2.2.0",
"memdown": "1.2.4",
"readable-stream": "1.0.33",
"request": "2.80.0",
"spark-md5": "3.0.0",
"through2": "2.0.3",
"vuvuzela": "1.0.3",
"websql": "0.4.4"
},
"devDependencies": {
"argsarray": "0.0.1",
"body-parser": "1.17.2",
"browserify": "14.2.0",
"browserify-incremental": "3.1.1",
"builtin-modules": "1.1.1",
"bundle-collapser": "1.2.1",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"change-case": "3.0.1",
"child-process-promise": "2.2.1",
"cssmin": "0.4.3",
"denodeify": "1.2.1",
"derequire": "2.0.6",
"es3ify": "0.2.2",
"eslint": "3.17.1",
"express": "4.15.2",
"express-pouchdb": "2.3.7",
"find-requires": "0.2.2",
"glob": "7.1.1",
"http-server": "0.9.0",
"istanbul": "0.4.5",
"istanbul-coveralls": "1.0.3",
"js-extend": "1.0.1",
"less": "2.7.2",
"lie": "3.1.1",
"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.4.1",
"mockery": "2.0.0",
"ncp": "2.0.0",
"nock": "9.0.12",
"pouchdb-express-router": "0.0.9",
"query-string": "4.3.3",
"replace": "0.3.0",
"rimraf": "2.6.1",
"rollup": "0.41.4",
"rollup-plugin-inject": "2.0.0",
"rollup-plugin-node-resolve": "2.1.0",
"rollup-plugin-replace": "1.1.1",
"sauce-connect-launcher": "1.2.2",
"seedrandom": "2.4.3",
"selenium-standalone": "6.4.0",
"stream-to-promise": "1.1.1",
"tape": "4.6.3",
"throw-max-listeners-error": "1.0.1",
"ua-parser-js": "0.7.12",
"uglify-js": "3.0.0",
"watch-glob": "0.1.3",
"wd": "1.2.0"
},
"// 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",
"// leveldown is pinned because something broke in >1.5.0: https://git.io/vy5Xv",
"// 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",
"leveldown",
"readable-stream",
"stream-to-promise"
]
}
}