package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "espower-source",
  3. "description": "Power Assert instrumentor from source to source, with source-map",
  4. "version": "2.3.0",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": "https://github.com/power-assert-js/espower-source/issues",
  11. "contributors": [
  12. {
  13. "name": "azu",
  14. "url": "https://github.com/azu"
  15. },
  16. {
  17. "name": "James Talmage",
  18. "url": "https://github.com/jamestalmage"
  19. },
  20. {
  21. "name": "Yoshiki Shibukawa",
  22. "url": "https://github.com/shibukawa"
  23. },
  24. {
  25. "name": "Yiyu He",
  26. "url": "https://github.com/dead-horse"
  27. },
  28. {
  29. "name": "Eward Song",
  30. "url": "https://github.com/shepherdwind"
  31. }
  32. ],
  33. "dependencies": {
  34. "acorn": "^5.0.0",
  35. "acorn-es7-plugin": "^1.0.10",
  36. "convert-source-map": "^1.1.1",
  37. "empower-assert": "^1.0.0",
  38. "escodegen": "^1.10.0",
  39. "espower": "^2.1.1",
  40. "estraverse": "^4.0.0",
  41. "merge-estraverse-visitors": "^1.0.0",
  42. "multi-stage-sourcemap": "^0.2.1",
  43. "path-is-absolute": "^1.0.0",
  44. "xtend": "^4.0.0"
  45. },
  46. "devDependencies": {
  47. "gulp": "^3.9.0",
  48. "gulp-jshint": "^2.0.2",
  49. "gulp-mocha": "^5.0.0",
  50. "gulp-util": "^3.0.6",
  51. "jshint": "^2.9.4",
  52. "jshint-stylish": "^2.0.1",
  53. "mocha": "^5.0.0",
  54. "source-map": "^0.5.7"
  55. },
  56. "engines": {
  57. "node": ">=0.8.0",
  58. "npm": ">=1.2.10"
  59. },
  60. "files": [
  61. "CHANGELOG.md",
  62. "MIT-LICENSE.txt",
  63. "README.md",
  64. "index.js",
  65. "package.json"
  66. ],
  67. "homepage": "https://github.com/power-assert-js/espower-source",
  68. "keywords": [
  69. "power-assert",
  70. "assert",
  71. "assertion",
  72. "test",
  73. "testing"
  74. ],
  75. "license": "MIT",
  76. "main": "./index.js",
  77. "repository": {
  78. "type": "git",
  79. "url": "git://github.com/power-assert-js/espower-source.git"
  80. },
  81. "scripts": {
  82. "preversion": "npm test",
  83. "lint": "gulp lint",
  84. "test": "gulp test"
  85. }
  86. }