package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "_args": [
  3. [
  4. "crc@3.8.0",
  5. "D:\\qianger\\7\\jindouyunNewFront"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "crc@3.8.0",
  10. "_id": "crc@3.8.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==",
  13. "_location": "/crc",
  14. "_phantomChildren": {
  15. "base64-js": "1.5.1",
  16. "ieee754": "1.2.1"
  17. },
  18. "_requested": {
  19. "type": "version",
  20. "registry": true,
  21. "raw": "crc@3.8.0",
  22. "name": "crc",
  23. "escapedName": "crc",
  24. "rawSpec": "3.8.0",
  25. "saveSpec": null,
  26. "fetchSpec": "3.8.0"
  27. },
  28. "_requiredBy": [
  29. "/crc32-stream"
  30. ],
  31. "_resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz",
  32. "_spec": "3.8.0",
  33. "_where": "D:\\qianger\\7\\jindouyunNewFront",
  34. "author": {
  35. "name": "Alex Gorbatchev",
  36. "url": "https://github.com/alexgorbatchev"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/alexgorbatchev/node-crc/issues"
  40. },
  41. "dependencies": {
  42. "buffer": "^5.1.0"
  43. },
  44. "description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the Browser.",
  45. "devDependencies": {
  46. "babel-cli": "^6.26.0",
  47. "babel-core": "^6.26.3",
  48. "babel-preset-es2015": "^6.24.1",
  49. "beautify-benchmark": "^0.2.4",
  50. "benchmark": "^2.1.4",
  51. "buffer-crc32": "^0.2.13",
  52. "chai": "^4.1.2",
  53. "eslint": "^5.1.0",
  54. "eslint-config-airbnb": "^17.0.0",
  55. "eslint-config-prettier": "^2.9.0",
  56. "eslint-plugin-import": "^2.13.0",
  57. "eslint-plugin-jsx-a11y": "^6.1.1",
  58. "eslint-plugin-prettier": "^2.6.2",
  59. "eslint-plugin-react": "^7.10.0",
  60. "mocha": "^5.2.0",
  61. "prettier": "^1.13.7",
  62. "seedrandom": "^2.4.3"
  63. },
  64. "files": [
  65. "lib",
  66. "*.js"
  67. ],
  68. "homepage": "https://github.com/alexgorbatchev/node-crc",
  69. "keywords": [
  70. "crc"
  71. ],
  72. "license": "MIT",
  73. "main": "./lib/index.js",
  74. "module": "./index.js",
  75. "name": "crc",
  76. "repository": {
  77. "type": "git",
  78. "url": "git://github.com/alexgorbatchev/node-crc.git"
  79. },
  80. "scripts": {
  81. "build": "rm -fr lib; babel --out-dir ./lib/es6 *.js; cd commonjs; babel --out-dir ../lib *.js",
  82. "lint": "eslint *.js test/{,**/}*.js",
  83. "pretest": "npm run build",
  84. "test": "npm run lint && mocha test/*.test.js && ./webpack-test/test.sh"
  85. },
  86. "version": "3.8.0"
  87. }