package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "crc",
  3. "version": "3.8.0",
  4. "description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the Browser.",
  5. "keywords": [
  6. "crc"
  7. ],
  8. "files": [
  9. "lib",
  10. "*.js"
  11. ],
  12. "main": "./lib/index.js",
  13. "module": "./index.js",
  14. "scripts": {
  15. "lint": "eslint *.js test/{,**/}*.js",
  16. "test": "npm run lint && mocha test/*.test.js && ./webpack-test/test.sh",
  17. "build": "rm -fr lib; babel --out-dir ./lib/es6 *.js; cd commonjs; babel --out-dir ../lib *.js",
  18. "pretest": "npm run build"
  19. },
  20. "author": {
  21. "name": "Alex Gorbatchev",
  22. "url": "https://github.com/alexgorbatchev"
  23. },
  24. "devDependencies": {
  25. "babel-cli": "^6.26.0",
  26. "babel-core": "^6.26.3",
  27. "babel-preset-es2015": "^6.24.1",
  28. "beautify-benchmark": "^0.2.4",
  29. "benchmark": "^2.1.4",
  30. "buffer-crc32": "^0.2.13",
  31. "chai": "^4.1.2",
  32. "eslint": "^5.1.0",
  33. "eslint-config-airbnb": "^17.0.0",
  34. "eslint-config-prettier": "^2.9.0",
  35. "eslint-plugin-import": "^2.13.0",
  36. "eslint-plugin-jsx-a11y": "^6.1.1",
  37. "eslint-plugin-prettier": "^2.6.2",
  38. "eslint-plugin-react": "^7.10.0",
  39. "mocha": "^5.2.0",
  40. "prettier": "^1.13.7",
  41. "seedrandom": "^2.4.3"
  42. },
  43. "homepage": "https://github.com/alexgorbatchev/node-crc",
  44. "bugs": "https://github.com/alexgorbatchev/node-crc/issues",
  45. "repository": {
  46. "type": "git",
  47. "url": "git://github.com/alexgorbatchev/node-crc.git"
  48. },
  49. "license": "MIT",
  50. "dependencies": {
  51. "buffer": "^5.1.0"
  52. }
  53. }