package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "empower-core",
  3. "description": "Power Assert feature enhancer for assert function/object",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/twada/power-assert-runtime/issues"
  12. },
  13. "contributors": [
  14. {
  15. "name": "James Talmage",
  16. "url": "https://github.com/jamestalmage"
  17. }
  18. ],
  19. "dependencies": {
  20. "call-signature": "0.0.2",
  21. "core-js": "^2.0.0"
  22. },
  23. "devDependencies": {
  24. "acorn": "^5.0.0",
  25. "acorn-es7-plugin": "^1.0.14",
  26. "buster-assertions": "^0.10.4",
  27. "escodegen": "^1.8.0",
  28. "espower": "^2.0.0",
  29. "mocha": "^5.0.0"
  30. },
  31. "directories": {
  32. "lib": "./lib"
  33. },
  34. "files": [
  35. "CHANGELOG.md",
  36. "README.md",
  37. "index.js",
  38. "lib",
  39. "package.json"
  40. ],
  41. "homepage": "https://github.com/twada/power-assert-runtime",
  42. "keywords": [
  43. "assert",
  44. "assertion",
  45. "power-assert",
  46. "test",
  47. "testing"
  48. ],
  49. "license": "MIT",
  50. "main": "./index.js",
  51. "repository": {
  52. "type": "git",
  53. "url": "https://github.com/twada/power-assert-runtime.git"
  54. },
  55. "scripts": {
  56. "test": "mocha test"
  57. }
  58. }