feathers/packages/errors/package.json
David Luecke 7557a01c14 Merge pull request #23 from feathersjs/error-tests
Make fully CommonJS compatible and add error middleware tests
2018-08-20 19:58:09 -07:00

61 lines
1.7 KiB
JSON

{
"name": "feathers-errors",
"description": "Common error types for feathers apps",
"version": "1.2.1",
"homepage": "https://github.com/feathersjs/feathers-errors",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-errors"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-errors.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-errors/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && babel -d lib/ src/ && mkdir lib/public/ && cp src/public/* lib/public/",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel-core/register",
"test": "npm run compile && npm run jshint && npm run mocha"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"feathers": "^1.2.0",
"jshint": "^2.8.0",
"mocha": "^2.3.4",
"request": "^2.69.0"
}
}