package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "_from": "is-alphanumerical@^1.0.0",
  3. "_id": "is-alphanumerical@1.0.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
  6. "_location": "/is-alphanumerical",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "is-alphanumerical@^1.0.0",
  12. "name": "is-alphanumerical",
  13. "escapedName": "is-alphanumerical",
  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-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
  22. "_shasum": "7eb9a2431f855f6b1ef1a78e326df515696c4dbf",
  23. "_spec": "is-alphanumerical@^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-alphanumerical/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. "is-alphabetical": "^1.0.0",
  43. "is-decimal": "^1.0.0"
  44. },
  45. "deprecated": false,
  46. "description": "Check if a character is alphanumerical",
  47. "devDependencies": {
  48. "browserify": "^16.0.0",
  49. "nyc": "^15.0.0",
  50. "prettier": "^1.0.0",
  51. "remark-cli": "^7.0.0",
  52. "remark-preset-wooorm": "^6.0.0",
  53. "tape": "^4.0.0",
  54. "tinyify": "^2.0.0",
  55. "xo": "^0.25.0"
  56. },
  57. "files": [
  58. "index.js"
  59. ],
  60. "funding": {
  61. "type": "github",
  62. "url": "https://github.com/sponsors/wooorm"
  63. },
  64. "homepage": "https://github.com/wooorm/is-alphanumerical#readme",
  65. "keywords": [
  66. "string",
  67. "character",
  68. "char",
  69. "code",
  70. "alphabetical",
  71. "numerical",
  72. "alphanumerical"
  73. ],
  74. "license": "MIT",
  75. "name": "is-alphanumerical",
  76. "nyc": {
  77. "check-coverage": true,
  78. "lines": 100,
  79. "functions": 100,
  80. "branches": 100
  81. },
  82. "prettier": {
  83. "tabWidth": 2,
  84. "useTabs": false,
  85. "singleQuote": true,
  86. "bracketSpacing": false,
  87. "semi": false,
  88. "trailingComma": "none"
  89. },
  90. "remarkConfig": {
  91. "plugins": [
  92. "preset-wooorm"
  93. ]
  94. },
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/wooorm/is-alphanumerical.git"
  98. },
  99. "scripts": {
  100. "build": "npm run build-bundle && npm run build-mangle",
  101. "build-bundle": "browserify . -s isAlphanumerical -o is-alphanumerical.js",
  102. "build-mangle": "browserify . -s isAlphanumerical -p tinyify -o is-alphanumerical.min.js",
  103. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  104. "test": "npm run format && npm run build && npm run test-coverage",
  105. "test-api": "node test",
  106. "test-coverage": "nyc --reporter lcov tape test.js"
  107. },
  108. "version": "1.0.4",
  109. "xo": {
  110. "prettier": true,
  111. "esnext": false,
  112. "ignores": [
  113. "is-alphanumerical.js"
  114. ]
  115. }
  116. }