web 3d图形渲染器
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.

76 lines
1.9 KiB

  1. {
  2. "name": "is-number-object",
  3. "version": "1.0.4",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "tests-only": "node --harmony --es-staging test",
  15. "test": "npm run tests-only",
  16. "posttest": "npx aud",
  17. "coverage": "covert test/index.js",
  18. "lint": "eslint .",
  19. "eccheck": "eclint check *.js **/*.js > /dev/null",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/inspect-js/is-number-object.git"
  26. },
  27. "keywords": [
  28. "Number",
  29. "ES6",
  30. "toStringTag",
  31. "@@toStringTag",
  32. "Number object"
  33. ],
  34. "dependencies": {},
  35. "devDependencies": {
  36. "@ljharb/eslint-config": "^15.0.2",
  37. "auto-changelog": "^1.16.2",
  38. "covert": "^1.1.1",
  39. "eclint": "^2.8.1",
  40. "eslint": "^6.7.2",
  41. "foreach": "^2.0.5",
  42. "has-symbols": "^1.0.1",
  43. "indexof": "^0.0.1",
  44. "is": "^3.3.0",
  45. "safe-publish-latest": "^1.1.4",
  46. "tape": "^4.12.0"
  47. },
  48. "testling": {
  49. "files": "test/index.js",
  50. "browsers": [
  51. "iexplore/6.0..latest",
  52. "firefox/3.0..6.0",
  53. "firefox/15.0..latest",
  54. "firefox/nightly",
  55. "chrome/4.0..10.0",
  56. "chrome/20.0..latest",
  57. "chrome/canary",
  58. "opera/10.0..latest",
  59. "opera/next",
  60. "safari/4.0..latest",
  61. "ipad/6.0..latest",
  62. "iphone/6.0..latest",
  63. "android-browser/4.2"
  64. ]
  65. },
  66. "engines": {
  67. "node": ">= 0.4"
  68. },
  69. "auto-changelog": {
  70. "output": "CHANGELOG.md",
  71. "template": "keepachangelog",
  72. "unreleased": false,
  73. "commitLimit": false,
  74. "backfillLimit": false
  75. }
  76. }