用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.1 KiB

6 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
6 months ago
  1. {
  2. "name": "get-intrinsic",
  3. <<<<<<< HEAD
  4. "version": "1.2.7",
  5. =======
  6. "version": "1.3.0",
  7. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  8. "description": "Get and robustly cache all JS language-level intrinsics at first require time",
  9. "main": "index.js",
  10. "exports": {
  11. ".": "./index.js",
  12. "./package.json": "./package.json"
  13. },
  14. "sideEffects": false,
  15. "scripts": {
  16. "prepack": "npmignore --auto --commentLines=autogenerated",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "prepublishOnly": "safe-publish-latest",
  19. "prelint": "evalmd README.md",
  20. "lint": "eslint --ext=.js,.mjs .",
  21. "pretest": "npm run lint",
  22. "tests-only": "nyc tape 'test/**/*.js'",
  23. "test": "npm run tests-only",
  24. "posttest": "npx npm@'>= 10.2' audit --production",
  25. "version": "auto-changelog && git add CHANGELOG.md",
  26. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/ljharb/get-intrinsic.git"
  31. },
  32. "keywords": [
  33. "javascript",
  34. "ecmascript",
  35. "es",
  36. "js",
  37. "intrinsic",
  38. "getintrinsic",
  39. "es-abstract"
  40. ],
  41. "author": "Jordan Harband <ljharb@gmail.com>",
  42. "funding": {
  43. "url": "https://github.com/sponsors/ljharb"
  44. },
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/ljharb/get-intrinsic/issues"
  48. },
  49. "homepage": "https://github.com/ljharb/get-intrinsic#readme",
  50. "dependencies": {
  51. <<<<<<< HEAD
  52. "call-bind-apply-helpers": "^1.0.1",
  53. "es-define-property": "^1.0.1",
  54. "es-errors": "^1.3.0",
  55. "es-object-atoms": "^1.0.0",
  56. "function-bind": "^1.1.2",
  57. "get-proto": "^1.0.0",
  58. =======
  59. "call-bind-apply-helpers": "^1.0.2",
  60. "es-define-property": "^1.0.1",
  61. "es-errors": "^1.3.0",
  62. "es-object-atoms": "^1.1.1",
  63. "function-bind": "^1.1.2",
  64. "get-proto": "^1.0.1",
  65. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  66. "gopd": "^1.2.0",
  67. "has-symbols": "^1.1.0",
  68. "hasown": "^2.0.2",
  69. "math-intrinsics": "^1.1.0"
  70. },
  71. "devDependencies": {
  72. "@ljharb/eslint-config": "^21.1.1",
  73. "auto-changelog": "^2.5.0",
  74. "call-bound": "^1.0.3",
  75. "encoding": "^0.1.13",
  76. <<<<<<< HEAD
  77. "es-abstract": "^1.23.8",
  78. "es-value-fixtures": "^1.5.0",
  79. "eslint": "=8.8.0",
  80. "evalmd": "^0.0.19",
  81. "for-each": "^0.3.3",
  82. =======
  83. "es-abstract": "^1.23.9",
  84. "es-value-fixtures": "^1.7.1",
  85. "eslint": "=8.8.0",
  86. "evalmd": "^0.0.19",
  87. "for-each": "^0.3.5",
  88. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  89. "make-async-function": "^1.0.0",
  90. "make-async-generator-function": "^1.0.0",
  91. "make-generator-function": "^2.0.0",
  92. "mock-property": "^1.1.0",
  93. "npmignore": "^0.3.1",
  94. "nyc": "^10.3.2",
  95. <<<<<<< HEAD
  96. "object-inspect": "^1.13.3",
  97. =======
  98. "object-inspect": "^1.13.4",
  99. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  100. "safe-publish-latest": "^2.0.0",
  101. "tape": "^5.9.0"
  102. },
  103. "auto-changelog": {
  104. "output": "CHANGELOG.md",
  105. "template": "keepachangelog",
  106. "unreleased": false,
  107. "commitLimit": false,
  108. "backfillLimit": false,
  109. "hideCredit": true
  110. },
  111. "testling": {
  112. "files": "test/GetIntrinsic.js"
  113. },
  114. "publishConfig": {
  115. "ignore": [
  116. ".github/workflows"
  117. ]
  118. },
  119. "engines": {
  120. "node": ">= 0.4"
  121. }
  122. }