UNPKG

feathers-service-tests

Version:

A standardized testing harness for Feathers services

73 lines (72 loc) 2.01 kB
{ "name": "feathers-service-tests", "description": "A standardized testing harness for Feathers services", "version": "0.10.2", "homepage": "https://github.com/feathersjs/feathers-service-tests", "main": "lib/", "keywords": [ "feathers", "feathers-plugin" ], "licenses": [ { "type": "MIT", "url": "https://github.com/feathersjs/feathers-service-tests/blob/master/LICENSE" } ], "repository": { "type": "git", "url": "git://github.com/feathersjs/feathers-service-tests.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/feathers-service-tests/issues" }, "engines": { "node": ">= 4" }, "scripts": { "prepublish": "npm run compile", "changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "publish": "git push origin --tags && npm run changelog && git push origin", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "compile": "rimraf lib/ && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "lint": "eslint-if-supported semistandard --fix", "mocha": "mocha test/ --compilers js:babel-core/register", "test": "npm run lint && npm run mocha" }, "semistandard": { "env": [ "mocha" ], "ignore": [ "/lib" ] }, "directories": { "lib": "lib" }, "dependencies": { "chai": "^3.4.0", "request": "^2.75.0", "request-promise": "^4.0.0" }, "devDependencies": { "babel-cli": "^6.6.5", "babel-core": "^6.7.4", "babel-plugin-add-module-exports": "^0.2.0", "babel-preset-es2015": "^6.6.0", "eslint-if-supported": "^1.0.1", "mocha": "^3.0.0", "rimraf": "^2.5.4", "semistandard": "^11.0.0" } }