package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "_from": "is-hexadecimal@^1.0.0",
  3. "_id": "is-hexadecimal@1.0.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
  6. "_location": "/is-hexadecimal",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "is-hexadecimal@^1.0.0",
  12. "name": "is-hexadecimal",
  13. "escapedName": "is-hexadecimal",
  14. "rawSpec": "^1.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.0"
  17. },
  18. "_requiredBy": [
  19. "/parse-entities"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
  22. "_shasum": "cc35c97588da4bd49a8eedd6bc4082d44dcb23a7",
  23. "_spec": "is-hexadecimal@^1.0.0",
  24. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\parse-entities",
  25. "author": {
  26. "name": "Titus Wormer",
  27. "email": "tituswormer@gmail.com",
  28. "url": "https://wooorm.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/wooorm/is-hexadecimal/issues"
  32. },
  33. "bundleDependencies": false,
  34. "contributors": [
  35. {
  36. "name": "Titus Wormer",
  37. "email": "tituswormer@gmail.com",
  38. "url": "https://wooorm.com"
  39. }
  40. ],
  41. "dependencies": {},
  42. "deprecated": false,
  43. "description": "Check if a character is hexadecimal",
  44. "devDependencies": {
  45. "browserify": "^16.0.0",
  46. "nyc": "^15.0.0",
  47. "prettier": "^1.0.0",
  48. "remark-cli": "^7.0.0",
  49. "remark-preset-wooorm": "^6.0.0",
  50. "tape": "^4.0.0",
  51. "tinyify": "^2.0.0",
  52. "xo": "^0.25.0"
  53. },
  54. "files": [
  55. "index.js"
  56. ],
  57. "funding": {
  58. "type": "github",
  59. "url": "https://github.com/sponsors/wooorm"
  60. },
  61. "homepage": "https://github.com/wooorm/is-hexadecimal#readme",
  62. "keywords": [
  63. "string",
  64. "character",
  65. "char",
  66. "code",
  67. "hexadecimal"
  68. ],
  69. "license": "MIT",
  70. "name": "is-hexadecimal",
  71. "nyc": {
  72. "check-coverage": true,
  73. "lines": 100,
  74. "functions": 100,
  75. "branches": 100
  76. },
  77. "prettier": {
  78. "tabWidth": 2,
  79. "useTabs": false,
  80. "singleQuote": true,
  81. "bracketSpacing": false,
  82. "semi": false,
  83. "trailingComma": "none"
  84. },
  85. "remarkConfig": {
  86. "plugins": [
  87. "preset-wooorm"
  88. ]
  89. },
  90. "repository": {
  91. "type": "git",
  92. "url": "git+https://github.com/wooorm/is-hexadecimal.git"
  93. },
  94. "scripts": {
  95. "build": "npm run build-bundle && npm run build-mangle",
  96. "build-bundle": "browserify . -s isHexadecimal -o is-hexadecimal.js",
  97. "build-mangle": "browserify . -s isHexadecimal -p tinyify -o is-hexadecimal.min.js",
  98. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  99. "test": "npm run format && npm run build && npm run test-coverage",
  100. "test-api": "node test",
  101. "test-coverage": "nyc --reporter lcov tape test.js"
  102. },
  103. "version": "1.0.4",
  104. "xo": {
  105. "prettier": true,
  106. "esnext": false,
  107. "ignores": [
  108. "is-hexadecimal.js"
  109. ]
  110. }
  111. }