package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "hable",
  3. "version": "3.0.0",
  4. "description": "Awaitable hooks for Node.js",
  5. "keywords": [
  6. "hook",
  7. "hookable",
  8. "plugin",
  9. "tapable",
  10. "tappable"
  11. ],
  12. "repository": "jsless/hable",
  13. "license": "MIT",
  14. "contributors": [
  15. "Sebastien Chopin (@Atinux)",
  16. "Clark Du (@clarkdo)",
  17. "Pooya Parsa (@pi0)"
  18. ],
  19. "main": "./dist/hable.js",
  20. "browser": "./dist/hable.umd.js",
  21. "types": "./index.d.ts",
  22. "files": [
  23. "index.d.ts",
  24. "src",
  25. "dist"
  26. ],
  27. "scripts": {
  28. "build": "bili --module-name hable --minify --format cjs,umd,es src/hable.js",
  29. "lint": "eslint src",
  30. "release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
  31. "test": "yarn lint && yarn jest"
  32. },
  33. "devDependencies": {
  34. "babel-jest": "^24.9.0",
  35. "bili": "^4.8.1",
  36. "codecov": "^3.5.0",
  37. "eslint": "^6.3.0",
  38. "eslint-config-standard": "^14.1.0",
  39. "eslint-plugin-import": "^2.18.2",
  40. "eslint-plugin-jest": "^22.17.0",
  41. "eslint-plugin-node": "^10.0.0",
  42. "eslint-plugin-promise": "^4.2.1",
  43. "eslint-plugin-standard": "^4.0.1",
  44. "jest": "^24.9.0",
  45. "standard-version": "^7.0.0"
  46. }
  47. }