couchdb-harness
Version:
A generalized port of the CouchDB JavaScript test harness.
41 lines (40 loc) • 992 B
JSON
{
"name": "couchdb-harness",
"version": "0.1.6",
"description": "A generalized port of the CouchDB JavaScript test harness.",
"repository": {
"type": "git",
"url": "git://github.com/pouchdb/couchdb-harness.git"
},
"main": "./index.js",
"scripts": {
"start": "./bin/couchdb-harness",
"jshint": "./node_modules/.bin/jshint bin/couchdb-harness index.js",
"test-pouchdb-server": "cd node_modules/pouchdb-server && npm run test-couchdb",
"test": "npm run jshint && npm run test-pouchdb-server"
},
"bin": "./bin/couchdb-harness",
"engines": {
"node": ">= 0.6.0"
},
"keywords": [
"couchdb",
"test",
"javascript"
],
"author": {
"name": "Nick Thompson",
"email": "ncthom91@gmail.com"
},
"license": "Apache License",
"dependencies": {
"colors": "^1.0.3",
"glob": "~3.1.21",
"optimist": "~0.3.5",
"which": "^1.0.8"
},
"devDependencies": {
"jshint": "^2.5.11",
"pouchdb-server": "^0.6.4"
}
}