forked from pouchdb/pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.54 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
{
"name": "pouchdb-monorepo",
"version": "6.2.0-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.4.1",
"double-ended-queue": "2.1.0-0",
"fruitdown": "1.0.2",
"immediate": "3.0.6",
"inherits": "2.0.3",
"level-codec": "6.2.0",
"level-write-stream": "1.0.0",
"leveldown": "1.5.0",
"levelup": "1.3.3",
"lie": "3.1.0",
"localstorage-down": "0.6.7",
"ltgt": "2.1.2",
"memdown": "1.2.2",
"readable-stream": "1.0.33",
"request": "2.78.0",
"scope-eval": "0.0.3",
"spark-md5": "3.0.0",
"through2": "2.0.1",
"vuvuzela": "1.0.3",
"websql": "0.4.4"
},
"devDependencies": {
"argsarray": "0.0.1",
"body-parser": "1.15.2",
"browserify": "13.1.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",
"child-process-promise": "2.2.0",
"cssmin": "0.4.3",
"denodeify": "1.2.1",
"derequire": "2.0.3",
"es3ify": "0.2.2",
"eslint": "3.12.1",
"express": "4.14.0",
"express-pouchdb": "2.1.1",
"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.1",
"lie": "3.1.0",
"lodash.debounce": "4.0.8",
"lodash.flatten": "4.4.0",
"lodash.uniq": "4.5.0",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"mockery": "2.0.0",
"ncp": "2.0.0",
"nock": "9.0.2",
"pouchdb-express-router": "0.0.9",
"replace": "0.3.0",
"rimraf": "2.5.4",
"rollup": "0.34.13",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-replace": "1.1.1",
"sauce-connect-launcher": "0.17.0",
"seedrandom": "2.4.2",
"selenium-standalone": "5.9.0",
"stream-to-promise": "1.1.1",
"tape": "4.6.3",
"throw-max-listeners-error": "1.0.1",
"ua-parser-js": "0.7.10",
"uglify-js": "2.7.5",
"watch-glob": "0.1.3",
"wd": "1.1.1"
}
}