package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "author": {
  3. "email": "yury@strozhevsky.com",
  4. "name": "Yury Strozhevsky"
  5. },
  6. "description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript",
  7. "contributors": [
  8. {
  9. "email": "rmh@unmitigatedrisk.com",
  10. "name": "Ryan Hurst"
  11. }
  12. ],
  13. "files": [
  14. "build",
  15. "README.md",
  16. "LICENSE"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/PeculiarVentures/ByteStream.js.git"
  21. },
  22. "devDependencies": {
  23. "@types/mocha": "^9.1.1",
  24. "@types/node": "^17.0.35",
  25. "@typescript-eslint/eslint-plugin": "^5.25.0",
  26. "@typescript-eslint/parser": "^5.25.0",
  27. "coveralls": "^3.1.1",
  28. "eslint": "^8.15.0",
  29. "mocha": "^10.0.0",
  30. "nyc": "^15.1.0",
  31. "rimraf": "^3.0.2",
  32. "ts-node": "^10.7.0",
  33. "typescript": "^4.6.4"
  34. },
  35. "engines": {
  36. "node": ">=6.0.0"
  37. },
  38. "scripts": {
  39. "test": "mocha",
  40. "clear": "rimraf build",
  41. "build": "npm run build:cjs && npm run build:mjs && npm run build:types",
  42. "build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs",
  43. "build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs",
  44. "prebuild:types": "rimraf build/types",
  45. "build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly",
  46. "rebuild": "npm run clear && npm run build",
  47. "lint": "eslint .",
  48. "lint:fix": "eslint --fix .",
  49. "coverage": "nyc npm test",
  50. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  51. },
  52. "keywords": [
  53. "ES6",
  54. "ES2015",
  55. "stream",
  56. "bit",
  57. "byte",
  58. "access"
  59. ],
  60. "name": "bytestreamjs",
  61. "version": "2.0.1",
  62. "module": "./build/mjs/index.js",
  63. "main": "./build/cjs/index.js",
  64. "types": "./build/types/index.d.ts",
  65. "license": "BSD-3-Clause"
  66. }