package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "espower-loader",
  3. "description": "Power Assert feature instrumentor on the fly",
  4. "version": "1.2.2",
  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/power-assert-js/espower-loader/issues"
  12. },
  13. "contributors": [
  14. {
  15. "name": "Eward Song",
  16. "url": "https://github.com/shepherdwind"
  17. },
  18. {
  19. "name": "Haoliang Gao",
  20. "url": "https://github.com/popomore"
  21. }
  22. ],
  23. "dependencies": {
  24. "convert-source-map": "^1.1.0",
  25. "espower-source": "^2.0.0",
  26. "minimatch": "^3.0.0",
  27. "source-map-support": "^0.4.0",
  28. "xtend": "^4.0.0"
  29. },
  30. "devDependencies": {
  31. "expect.js": "^0.3.1",
  32. "jshint": "^2.9.4",
  33. "mocha": "^3.0.0",
  34. "power-assert": "^1.4.2"
  35. },
  36. "engines": {
  37. "node": ">= 0.8.0"
  38. },
  39. "files": [
  40. "CHANGELOG.md",
  41. "MIT-LICENSE.txt",
  42. "README.md",
  43. "examples",
  44. "index.js",
  45. "package.json"
  46. ],
  47. "homepage": "https://github.com/power-assert-js/espower-loader",
  48. "keywords": [
  49. "power-assert",
  50. "assert",
  51. "assertion",
  52. "test",
  53. "testing"
  54. ],
  55. "license": "MIT",
  56. "main": "./index.js",
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/power-assert-js/espower-loader.git"
  60. },
  61. "scripts": {
  62. "lint": "jshint index.js",
  63. "unit": "mocha 'test/unit/**/*.js'",
  64. "tobe_instrumented": "mocha --require './test_loader/enable-power-assert' 'test/tobe_instrumented/*.js'",
  65. "not_tobe_instrumented": "mocha 'test/not_tobe_instrumented/*.js'",
  66. "test": "npm run lint && npm run unit && npm run tobe_instrumented && npm run not_tobe_instrumented"
  67. }
  68. }