您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "is-nan",
  3. "version": "1.3.2",
  4. "description": "ES2015-compliant shim for Number.isNaN - the global isNaN returns false positives.",
  5. "author": "Jordan Harband",
  6. "funding": {
  7. "url": "https://github.com/sponsors/ljharb"
  8. },
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "posttest": "npx aud --production",
  17. "lint": "eslint .",
  18. "postlint": "es-shim-api --bound"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/es-shims/is-nan.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/es-shims/is-nan/issues"
  26. },
  27. "homepage": "https://github.com/es-shims/is-nan",
  28. "keywords": [
  29. "is",
  30. "NaN",
  31. "not a number",
  32. "number",
  33. "isNaN",
  34. "ES6",
  35. "ES2015",
  36. "shim",
  37. "polyfill",
  38. "es-shim API"
  39. ],
  40. "dependencies": {
  41. "call-bind": "^1.0.0",
  42. "define-properties": "^1.1.3"
  43. },
  44. "devDependencies": {
  45. "@es-shims/api": "^2.1.2",
  46. "@ljharb/eslint-config": "^17.3.0",
  47. "aud": "^1.1.3",
  48. "es5-shim": "^4.5.14",
  49. "eslint": "^7.16.0",
  50. "functions-have-names": "^1.2.2",
  51. "nyc": "^10.3.2",
  52. "safe-publish-latest": "^1.1.4",
  53. "tape": "^5.0.1"
  54. },
  55. "testling": {
  56. "files": "test.js",
  57. "browsers": [
  58. "iexplore/6.0..latest",
  59. "firefox/3.0..6.0",
  60. "firefox/15.0..latest",
  61. "firefox/nightly",
  62. "chrome/4.0..10.0",
  63. "chrome/20.0..latest",
  64. "chrome/canary",
  65. "opera/10.0..12.0",
  66. "opera/15.0..latest",
  67. "opera/next",
  68. "safari/4.0..latest",
  69. "ipad/6.0..latest",
  70. "iphone/6.0..latest",
  71. "android-browser/4.2"
  72. ]
  73. },
  74. "engines": {
  75. "node": ">= 0.4"
  76. }
  77. }