package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "empower",
  3. "description": "Power Assert feature enhancer for assert function/object",
  4. "version": "1.3.1",
  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/empower/issues"
  12. },
  13. "contributors": [
  14. {
  15. "name": "James Talmage",
  16. "url": "https://github.com/jamestalmage"
  17. }
  18. ],
  19. "dependencies": {
  20. "empower-core": "^1.2.0",
  21. "core-js": "^2.0.0"
  22. },
  23. "devDependencies": {
  24. "acorn": "^3.0.4",
  25. "acorn-es7-plugin": "^1.0.12",
  26. "babel-core": "^5.8.33",
  27. "blanket": "1.1.9",
  28. "browserify": "^13.0.0",
  29. "buster-assertions": "^0.10.4",
  30. "del": "^2.0.1",
  31. "escodegen": "^1.7.0",
  32. "espower": "^1.2.1",
  33. "gulp": "^3.9.0",
  34. "gulp-derequire": "^2.1.0",
  35. "gulp-dereserve": "^0.2.1",
  36. "gulp-mocha": "^2.1.3",
  37. "gulp-mocha-phantomjs": "^0.12.1",
  38. "gulp-util": "^3.0.6",
  39. "gulp-webserver": "^0.9.1",
  40. "licensify": "^3.1.0",
  41. "mocha": "^2.3.2",
  42. "mocha-lcov-reporter": "^1.2.0",
  43. "through2": "^2.0.0",
  44. "vinyl-source-stream": "^1.1.0"
  45. },
  46. "directories": {
  47. "lib": "./lib"
  48. },
  49. "files": [
  50. "CHANGELOG.md",
  51. "MIT-LICENSE.txt",
  52. "README.md",
  53. "index.js",
  54. "lib",
  55. "build/empower.js",
  56. "package.json"
  57. ],
  58. "homepage": "https://github.com/power-assert-js/empower",
  59. "keywords": [
  60. "power-assert",
  61. "assert",
  62. "assertion",
  63. "test",
  64. "testing"
  65. ],
  66. "license": "MIT",
  67. "main": "./index.js",
  68. "repository": {
  69. "type": "git",
  70. "url": "https://github.com/power-assert-js/empower.git"
  71. },
  72. "scripts": {
  73. "preversion": "npm test",
  74. "version": "npm run build && git add -A build",
  75. "bower": "bower install --config.interactive=false",
  76. "build": "npm prune && npm dedupe && gulp bundle",
  77. "test": "gulp test",
  78. "unit": "gulp unit",
  79. "watch": "gulp watch",
  80. "coveralls": "gulp coverage && cat ./coverage.lcov | coveralls"
  81. }
  82. }