package.json 2.1 KB

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