package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "author": {
  3. "email": "yury@strozhevsky.com",
  4. "name": "Yury Strozhevsky"
  5. },
  6. "contributors": [
  7. {
  8. "email": "rmh@unmitigatedrisk.com",
  9. "name": "Ryan Hurst"
  10. },
  11. {
  12. "email": "microshine@mail.ru",
  13. "name": "Miroshin Stepan"
  14. }
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/PeculiarVentures/pvutils.git"
  19. },
  20. "description": "Common utilities for products from Peculiar Ventures",
  21. "scripts": {
  22. "prepare": "npm run build",
  23. "test": "mocha",
  24. "lint": "eslint . --ext .ts",
  25. "lint:fix": "eslint --fix . --ext .ts",
  26. "build": "rollup -c",
  27. "coverage": "nyc npm test",
  28. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  29. "release": "standard-version"
  30. },
  31. "files": [
  32. "build",
  33. "README.md",
  34. "LICENSE"
  35. ],
  36. "module": "./build/utils.es.js",
  37. "main": "./build/utils.js",
  38. "types": "./build/index.d.ts",
  39. "devDependencies": {
  40. "@types/mocha": "^10.0.10",
  41. "@types/node": "^17.0.19",
  42. "@typescript-eslint/eslint-plugin": "^5.12.1",
  43. "@typescript-eslint/parser": "^5.12.1",
  44. "eslint": "^8.9.0",
  45. "eslint-plugin-import": "^2.25.4",
  46. "mocha": "^11.7.4",
  47. "nyc": "^15.1.0",
  48. "rollup": "2.79.2",
  49. "rollup-plugin-dts": "^4.1.0",
  50. "rollup-plugin-typescript2": "^0.31.2",
  51. "standard-version": "^9.5.0",
  52. "ts-node": "^10.5.0",
  53. "typescript": "^4.5.5"
  54. },
  55. "name": "pvutils",
  56. "version": "1.1.5",
  57. "license": "MIT",
  58. "engines": {
  59. "node": ">=16.0.0"
  60. },
  61. "devEngines": {
  62. "packageManager": {
  63. "name": "npm",
  64. "version": ">=10",
  65. "onFail": "error"
  66. }
  67. }
  68. }