UNPKG

feathers-tests-fake-app-users

Version:

Fake some feathers dependencies in service unit tests. Starter for your own customized fakes

74 lines (73 loc) 2.42 kB
{ "name": "feathers-tests-fake-app-users", "version": "1.0.0", "description": "Fake some feathers dependencies in service unit tests. Starter for your own customized fakes", "main": "lib/", "directories": { "lib": "lib" }, "scripts": { "copy": "rm -rf lib/ && cp -r src/ lib/", "babel": "babel src/ --out-dir lib --presets babel-preset-es2015", "babel:watch": "babel src/ --watch --out-dir lib --presets babel-preset-es2015", "mocha": "mocha test/ --reporter spec --compilers js:babel-core/register", "mocha:es6": "mocha test/ --reporter spec", "eslint": "eslint src/. test/. --ext .js,.jsx .", "build": "npm run copy && npm run babel", "test": "npm run build && npm run eslint && npm run mocha", "test:only": "npm run mocha:es6", "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter spec test/*", "watch": "npm run copy && npm run babel:watch", "git:push": "npm run build && git push origin && git push origin --tags", "npm:patch": "npm version patch && npm publish", "npm:minor": "npm version minor && npm publish", "npm:major": "npm version major && npm publish", "npm:updates": "npm-check-updates" }, "repository": { "type": "git", "url": "git+https://github.com/eddyystop/feathers-tests-app-users.git" }, "keywords": [ "feathers", "feathersjs", "test", "tests", "service", "services", "app", "users" ], "author": "John Szwaronek <johnsz9999@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/eddyystop/feathers-tests-app-users/issues" }, "homepage": "https://github.com/eddyystop/feathers-tests-app-users#readme", "dependencies": { "debug": "^2.2.0", "object.assign": "^4.0.4", "sift": "crcn/sift.js" }, "devDependencies": { "babel-cli": "^6.11.4", "babel-core": "^6.11.4", "babel-eslint": "^6.1.2", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.9.0", "chai": "^3.5.0", "coveralls": "^2.11.11", "eslint": "^3.1.1", "eslint-config-airbnb": "^9.0.1", "eslint-plugin-import": "^1.11.1", "eslint-plugin-jsx-a11y": "^2.0.1", "eslint-plugin-react": "^5.2.2", "feathers-service-verify-reset": "0.3.1", "istanbul": "^0.4.4", "mocha": "^2.5.3" }, "engines": { "node": ">=5.0.0", "npm": ">=3.8.0" } }