-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
65 lines (65 loc) · 2.82 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
{
"name": "replicate-couchdb-cluster",
"version": "1.0.1",
"description": "A fault-tolerant way to replicate an entire CouchDB cluster",
"main": "index.js",
"bin": {
"replicate-couchdb-cluster": "bin/cmd.js"
},
"repository": {
"type": "git",
"url": "git://github.com/redgeoff/replicate-couchdb-cluster"
},
"keywords": [
"couchdb",
"couch",
"replicate",
"cluster"
],
"author": "Geoffrey Cox",
"license": "MIT",
"bugs": {
"url": "https://github.com/redgeoff/replicate-couchdb-cluster/issues"
},
"scripts": {
"assert-beautified": "beautify-proj -i test -c beautify.json && beautify-proj -i scripts -c beautify.json && beautify-proj -i bin -c beautify.json",
"beautify": "beautify-proj -i test -o . -c beautify.json && beautify-proj -i scripts -o . -c beautify.json && beautify-proj -i bin -o . -c beautify.json",
"jshint": "jshint -c .jshintrc test scripts bin",
"node-test": "istanbul test --dir cache/coverage/node node_modules/mocha/bin/_mocha test/node.js",
"node-full-test": "npm run node-test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
"browser-server": "node_modules/gofur/scripts/browser/serve.js -c cache -t test/browser.js",
"browser-test": "node_modules/gofur/scripts/browser/test.js -c cache -t test/browser.js",
"browser-test-firefox": "node_modules/gofur/scripts/browser/test.js -c cache -t test/browser.js -b selenium:firefox",
"browser-test-chrome": "node_modules/gofur/scripts/browser/test.js -c cache -t test/browser.js -b selenium:chrome",
"browser-coverage-server": "node_modules/gofur/scripts/browser-coverage/serve.js -c cache -t test/browser.js",
"browser-coverage-test": "node_modules/gofur/scripts/browser-coverage/test.js -c cache -t test/browser.js",
"browser-coverage-report": "istanbul report --dir cache/coverage/browser --root cache/coverage/browser lcov",
"browser-coverage-check": "istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100 cache/coverage/browser/coverage.json",
"browser-coverage-full-test": "npm run browser-coverage-test && npm run browser-coverage-report && npm run browser-coverage-check",
"test": "npm run assert-beautified && npm run jshint && npm run node-full-test && npm run browser-coverage-full-test",
"TODO-build": "",
"TODO-test-in-sauce": "",
"reset-db": "./reset-db.js"
},
"devDependencies": {
"beautify-proj": "^1.0.0",
"chai": "^4.1.0",
"chai-as-promised": "^6.0.0",
"gofur": "^1.1.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.7",
"mocha": "^7.0.1",
"request": "^2.85.0"
},
"greenkeeper": {
"ignore": [
"chai-as-promised"
]
},
"dependencies": {
"couch-slouch": "^1.0.4",
"minimist": "^1.2.0",
"sporks": "^1.0.0",
"squadron": "^1.0.0"
}
}