-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
64 lines (64 loc) · 2.69 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
{
"name": "couch-slouch",
"version": "1.5.0",
"description": "A JS API for CouchDB that does the heavy lifting",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/redgeoff/slouch"
},
"keywords": [
"couchdb",
"couch",
"api",
"client",
"request",
"rest",
"restful",
"json"
],
"author": "Geoffrey Cox",
"license": "MIT",
"bugs": {
"url": "https://github.com/redgeoff/slouch/issues"
},
"scripts": {
"assert-beautified": "beautify-proj -i test -c beautify.json && beautify-proj -i scripts -c beautify.json",
"beautify": "beautify-proj -i test -o . -c beautify.json && beautify-proj -i scripts -o . -c beautify.json",
"jshint": "jshint -c .jshintrc test scripts",
"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",
"postversion": "git push && git push --tags"
},
"dependencies": {
"backoff-promise": "^1.0.0",
"bluebird": "^3.5.4",
"quelle": "^1.0.4",
"request": "^2.88.0",
"sporks": "^1.0.1",
"squadron": "^1.0.0"
},
"devDependencies": {
"beautify-proj": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gofur": "^1.1.1",
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"mocha": "^7.0.1",
"wait-on": "^4.0.0"
}
}