package.json 528 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "tapable",
  3. "version": "0.2.9",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "Just a little module for plugins.",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "http://github.com/webpack/tapable.git"
  10. },
  11. "devDependencies": {
  12. "mocha": "^2.2.4",
  13. "should": "^5.2.0"
  14. },
  15. "engines": {
  16. "node": ">=0.6"
  17. },
  18. "files": [
  19. "lib"
  20. ],
  21. "homepage": "https://github.com/webpack/tapable",
  22. "main": "lib/Tapable.js",
  23. "scripts": {
  24. "test": "mocha --reporter spec"
  25. }
  26. }