package.json 2.3 KB

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