package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "thingies",
  3. "version": "2.5.0",
  4. "description": "",
  5. "author": {
  6. "name": "streamich",
  7. "url": "https://github.com/streamich"
  8. },
  9. "homepage": "https://github.com/streamich/thingies",
  10. "repository": "streamich/thingies",
  11. "funding": {
  12. "type": "github",
  13. "url": "https://github.com/sponsors/streamich"
  14. },
  15. "license": "MIT",
  16. "engines": {
  17. "node": ">=10.18"
  18. },
  19. "main": "lib/index.js",
  20. "files": [
  21. "lib/",
  22. "LICENSE"
  23. ],
  24. "types": "lib/index.d.ts",
  25. "typings": "lib/index.d.ts",
  26. "scripts": {
  27. "prettier": "prettier --ignore-path .gitignore --write 'src/**/*.{ts,tsx,js,jsx}'",
  28. "prettier:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx}'",
  29. "tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose",
  30. "lint": "yarn tslint",
  31. "clean": "rimraf lib es6 es2020 coverage typedocs gh-pages",
  32. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  33. "test": "jest --no-cache --config='jest.config.js'",
  34. "coverage": "yarn test --collectCoverage",
  35. "typedoc": "npx typedoc@0.25.13 --tsconfig tsconfig.build.json",
  36. "build:pages": "npx rimraf@5.0.5 gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
  37. "deploy:pages": "gh-pages -d gh-pages"
  38. },
  39. "keywords": [],
  40. "dependencies": {},
  41. "peerDependencies": {
  42. "tslib": "^2"
  43. },
  44. "devDependencies": {
  45. "@types/benchmark": "^2.1.5",
  46. "@types/jest": "^29.5.12",
  47. "benchmark": "^2.1.4",
  48. "husky": "^8.0.0",
  49. "jest": "^29.7.0",
  50. "prettier": "^3.0.0",
  51. "pretty-quick": "^3.1.1",
  52. "rimraf": "^3.0.2",
  53. "ts-jest": "^29.1.2",
  54. "tslib": "^2.6.2",
  55. "tslint": "^6.1.3",
  56. "tslint-config-common": "^1.6.2",
  57. "typescript": "^5.0.3"
  58. },
  59. "release": {
  60. "branches": [
  61. "main",
  62. {
  63. "name": "next",
  64. "prerelease": true
  65. }
  66. ],
  67. "prepare": [
  68. "@semantic-release/changelog",
  69. "@semantic-release/npm",
  70. "@semantic-release/git"
  71. ],
  72. "verifyConditions": [
  73. "@semantic-release/changelog",
  74. "@semantic-release/npm",
  75. "@semantic-release/git"
  76. ]
  77. }
  78. }