package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "make-error-cause",
  3. "version": "1.2.2",
  4. "description": "Make your own nested error types!",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "files": [
  8. "dist/"
  9. ],
  10. "scripts": {
  11. "lint": "tslint \"src/**/*.ts\"",
  12. "build": "rm -rf dist/ && tsc",
  13. "test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-spec",
  14. "test-cov": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts --print none -x \"*.d.ts\" -x \"*.spec.ts\" blue-tape -- \"src/**/*.spec.ts\" | tap-spec",
  15. "test": "npm run lint && npm run test-cov",
  16. "prepublish": "typings install && npm run build"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/blakeembrey/make-error-cause.git"
  21. },
  22. "keywords": [
  23. "nested",
  24. "error",
  25. "cause",
  26. "extend",
  27. "inherit",
  28. "custom"
  29. ],
  30. "author": {
  31. "name": "Blake Embrey",
  32. "email": "hello@blakeembrey.com",
  33. "url": "http://blakeembrey.me"
  34. },
  35. "license": "Apache-2.0",
  36. "bugs": {
  37. "url": "https://github.com/blakeembrey/make-error-cause/issues"
  38. },
  39. "homepage": "https://github.com/blakeembrey/make-error-cause",
  40. "devDependencies": {
  41. "blue-tape": "^1.0.0",
  42. "istanbul": "1.0.0-alpha.2",
  43. "tap-spec": "^4.1.1",
  44. "ts-node": "^1.1.0",
  45. "tslint": "^3.10.2",
  46. "tslint-config-standard": "^1.0.0",
  47. "typescript": "^2.0.3",
  48. "typings": "^1.3.1"
  49. },
  50. "dependencies": {
  51. "make-error": "^1.2.0"
  52. }
  53. }