用工小程序前端代码
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.

113 lines
3.0 KiB

6 months ago
2 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
6 months ago
6 months ago
2 months ago
6 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
  1. {
  2. "name": "object-inspect",
  3. <<<<<<< HEAD
  4. "version": "1.13.3",
  5. =======
  6. "version": "1.13.4",
  7. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  8. "description": "string representations of objects in node and the browser",
  9. "main": "index.js",
  10. "sideEffects": false,
  11. "devDependencies": {
  12. "@ljharb/eslint-config": "^21.1.1",
  13. "@pkgjs/support": "^0.0.6",
  14. "auto-changelog": "^2.5.0",
  15. "core-js": "^2.6.12",
  16. "error-cause": "^1.0.8",
  17. <<<<<<< HEAD
  18. "es-value-fixtures": "^1.5.0",
  19. =======
  20. "es-value-fixtures": "^1.7.1",
  21. >>>>>>> f6c7301605cb7d02d0ad6c2c7d8246dabc5bc9e5
  22. "eslint": "=8.8.0",
  23. "for-each": "^0.3.4",
  24. "functions-have-names": "^1.2.3",
  25. "glob": "=10.3.7",
  26. "globalthis": "^1.0.4",
  27. "has-symbols": "^1.1.0",
  28. "has-tostringtag": "^1.0.2",
  29. "in-publish": "^2.0.1",
  30. "jackspeak": "=2.1.1",
  31. "make-arrow-function": "^1.2.0",
  32. "mock-property": "^1.1.0",
  33. "npmignore": "^0.3.1",
  34. "nyc": "^10.3.2",
  35. "safe-publish-latest": "^2.0.0",
  36. "safer-buffer": "^2.1.2",
  37. "semver": "^6.3.1",
  38. "string.prototype.repeat": "^1.0.0",
  39. "tape": "^5.9.0"
  40. },
  41. "scripts": {
  42. "prepack": "npmignore --auto --commentLines=autogenerated",
  43. "prepublish": "not-in-publish || npm run prepublishOnly",
  44. "prepublishOnly": "safe-publish-latest",
  45. "pretest": "npm run lint",
  46. "lint": "eslint --ext=js,mjs .",
  47. "postlint": "npx @pkgjs/support validate",
  48. "test": "npm run tests-only && npm run test:corejs",
  49. "tests-only": "nyc tape 'test/*.js'",
  50. "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
  51. "posttest": "npx npm@'>=10.2' audit --production",
  52. "version": "auto-changelog && git add CHANGELOG.md",
  53. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  54. },
  55. "testling": {
  56. "files": [
  57. "test/*.js",
  58. "test/browser/*.js"
  59. ],
  60. "browsers": [
  61. "ie/6..latest",
  62. "chrome/latest",
  63. "firefox/latest",
  64. "safari/latest",
  65. "opera/latest",
  66. "iphone/latest",
  67. "ipad/latest",
  68. "android/latest"
  69. ]
  70. },
  71. "repository": {
  72. "type": "git",
  73. "url": "git://github.com/inspect-js/object-inspect.git"
  74. },
  75. "homepage": "https://github.com/inspect-js/object-inspect",
  76. "keywords": [
  77. "inspect",
  78. "util.inspect",
  79. "object",
  80. "stringify",
  81. "pretty"
  82. ],
  83. "author": {
  84. "name": "James Halliday",
  85. "email": "mail@substack.net",
  86. "url": "http://substack.net"
  87. },
  88. "funding": {
  89. "url": "https://github.com/sponsors/ljharb"
  90. },
  91. "license": "MIT",
  92. "browser": {
  93. "./util.inspect.js": false
  94. },
  95. "auto-changelog": {
  96. "output": "CHANGELOG.md",
  97. "template": "keepachangelog",
  98. "unreleased": false,
  99. "commitLimit": false,
  100. "backfillLimit": false,
  101. "hideCredit": true
  102. },
  103. "publishConfig": {
  104. "ignore": [
  105. ".github/workflows",
  106. "./test-core-js.js"
  107. ]
  108. },
  109. "support": true,
  110. "engines": {
  111. "node": ">= 0.4"
  112. }
  113. }