package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "p",
  3. "version": "0.0.0",
  4. "description": "A minimalist process manager.",
  5. "main": "dist/lib/index.js",
  6. "types": "./dist/lib/index.d.ts",
  7. "repository": "https://github.com/PreMiD/p",
  8. "author": "LewisTehMinerz",
  9. "license": "MPL-2.0",
  10. "private": false,
  11. "bin": "./dist/cli/index.js",
  12. "devDependencies": {
  13. "@commitlint/cli": "^8.3.5",
  14. "@commitlint/config-conventional": "^8.3.4",
  15. "@types/node": "^14.0.9",
  16. "commitizen": "^4.1.2",
  17. "commitlint": "^8.3.5",
  18. "cz-conventional-changelog": "3.2.0",
  19. "husky": "^4.2.5",
  20. "rimraf": "^3.0.2",
  21. "typescript": "^3.9.3"
  22. },
  23. "scripts": {
  24. "build": "rimraf dist/ && tsc -p tsconfig.cli.json && tsc -p tsconfig.lib.json && yarn dedupe-lib",
  25. "dedupe-lib": "rimraf dist/cli/lib && move dist/cli/cli dist/cli-tmp && rimraf dist/cli/ && move dist/cli-tmp dist/cli"
  26. },
  27. "config": {
  28. "commitizen": {
  29. "path": "./node_modules/cz-conventional-changelog"
  30. }
  31. },
  32. "husky": {
  33. "hooks": {
  34. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  35. }
  36. }
  37. }