package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "tapable",
  3. "version": "2.2.2",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "Just a little module for plugins.",
  6. "license": "MIT",
  7. "homepage": "https://github.com/webpack/tapable",
  8. "repository": {
  9. "type": "git",
  10. "url": "http://github.com/webpack/tapable.git"
  11. },
  12. "devDependencies": {
  13. "@babel/core": "^7.4.4",
  14. "@babel/preset-env": "^7.4.4",
  15. "babel-jest": "^24.8.0",
  16. "jest": "^24.8.0",
  17. "prettier": "^3.5.3",
  18. "prettier-1": "npm:prettier@^1"
  19. },
  20. "engines": {
  21. "node": ">=6"
  22. },
  23. "files": ["lib", "!lib/__tests__", "tapable.d.ts"],
  24. "main": "lib/index.js",
  25. "types": "./tapable.d.ts",
  26. "browser": {
  27. "util": "./lib/util-browser.js"
  28. },
  29. "scripts": {
  30. "lint": "yarn fmt:check",
  31. "fmt": "yarn fmt:base --log-level warn --write",
  32. "fmt:check": "yarn fmt:base --check",
  33. "fmt:base": "node node_modules/prettier/bin/prettier.cjs --cache --ignore-unknown .",
  34. "test": "jest"
  35. },
  36. "jest": {
  37. "transform": {
  38. "__tests__[\\\\/].+\\.js$": "babel-jest"
  39. }
  40. }
  41. }