package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "1.8.0",
  4. "description": "JavaScript obfuscator",
  5. "keywords": [
  6. "obfuscator",
  7. "obfuscation",
  8. "uglify",
  9. "crush",
  10. "code protection",
  11. "javascript obfuscator",
  12. "js obfuscator"
  13. ],
  14. "engines": {
  15. "node": ">=10"
  16. },
  17. "main": "dist/index.js",
  18. "browser": "dist/index.browser.js",
  19. "bin": {
  20. "javascript-obfuscator": "./bin/javascript-obfuscator"
  21. },
  22. "types": "index.d.ts",
  23. "dependencies": {
  24. "@gradecam/tsenum": "1.2.0",
  25. "@nuxtjs/opencollective": "0.2.2",
  26. "acorn": "7.3.1",
  27. "chalk": "4.1.0",
  28. "chance": "1.1.6",
  29. "class-validator": "0.12.2",
  30. "commander": "6.0.0",
  31. "escodegen": "1.14.3",
  32. "eslint-scope": "5.1.0",
  33. "estraverse": "5.1.0",
  34. "eventemitter3": "4.0.4",
  35. "fast-deep-equal": "3.1.3",
  36. "inversify": "5.0.1",
  37. "js-string-escape": "1.0.1",
  38. "md5": "2.2.1",
  39. "mkdirp": "1.0.4",
  40. "multimatch": "4.0.0",
  41. "reflect-metadata": "0.1.13",
  42. "source-map-support": "0.5.19",
  43. "string-template": "1.0.0",
  44. "tslib": "2.0.0"
  45. },
  46. "devDependencies": {
  47. "@types/chai": "4.2.12",
  48. "@types/chance": "1.1.0",
  49. "@types/escodegen": "0.0.6",
  50. "@types/eslint-scope": "3.7.0",
  51. "@types/estraverse": "5.1.0",
  52. "@types/estree": "0.0.44",
  53. "@types/md5": "2.2.0",
  54. "@types/mkdirp": "1.0.1",
  55. "@types/mocha": "8.0.0",
  56. "@types/multimatch": "4.0.0",
  57. "@types/node": "14.0.26",
  58. "@types/rimraf": "3.0.0",
  59. "@types/sinon": "9.0.4",
  60. "@types/string-template": "1.0.2",
  61. "@types/webpack-env": "1.15.2",
  62. "@typescript-eslint/eslint-plugin": "3.7.0",
  63. "@typescript-eslint/parser": "3.7.0",
  64. "chai": "4.2.0",
  65. "coveralls": "3.1.0",
  66. "eslint": "7.5.0",
  67. "eslint-plugin-import": "2.22.0",
  68. "eslint-plugin-jsdoc": "30.0.3",
  69. "eslint-plugin-no-null": "1.0.2",
  70. "eslint-plugin-prefer-arrow": "1.2.2",
  71. "eslint-plugin-unicorn": "21.0.0",
  72. "fork-ts-checker-notifier-webpack-plugin": "3.0.0",
  73. "fork-ts-checker-webpack-plugin": "5.0.11",
  74. "mocha": "8.0.1",
  75. "nyc": "15.1.0",
  76. "pjson": "1.0.9",
  77. "pre-commit": "1.2.2",
  78. "rimraf": "3.0.2",
  79. "sinon": "9.0.2",
  80. "threads": "1.6.3",
  81. "ts-loader": "8.0.1",
  82. "ts-node": "8.10.2",
  83. "typescript": "3.9.7",
  84. "webpack": "4.44.0",
  85. "webpack-cli": "3.3.12",
  86. "webpack-node-externals": "2.5.0"
  87. },
  88. "repository": {
  89. "type": "git",
  90. "url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
  91. },
  92. "homepage": "https://obfuscator.io/",
  93. "scripts": {
  94. "start": "scripts/start",
  95. "webpack:prod": "scripts/webpack-prod",
  96. "webpack:dev": "scripts/webpack-dev",
  97. "build": "scripts/build",
  98. "watch": "scripts/watch",
  99. "removeCacheDir": "scripts/remove-cache-dir",
  100. "test:compile": "scripts/test-compile",
  101. "test:dev": "scripts/test-dev",
  102. "test:devCompilePerformance": "scripts/test-dev-compile-performance",
  103. "test:devRuntimePerformance": "scripts/test-dev-runtime-performance",
  104. "test:full": "scripts/test-full",
  105. "test:coveralls": "scripts/test-coveralls",
  106. "test:mocha": "scripts/test-mocha",
  107. "test:mocha-memory-performance": "scripts/test-mocha-memory-performance",
  108. "test:removeTmpDir": "scripts/test-remove-tmp-dir",
  109. "test": "scripts/test",
  110. "eslint": "scripts/eslint",
  111. "travis": "scripts/travis",
  112. "git:addFiles": "scripts/git-add-files",
  113. "postinstall": "opencollective || exit 0"
  114. },
  115. "pre-commit": [
  116. "build",
  117. "git:addFiles"
  118. ],
  119. "author": {
  120. "name": "Timofey Kachalov"
  121. },
  122. "contributors": [
  123. "Timofey Kachalov (https://github.com/sanex3339)",
  124. "Dmitry Zamotkin (https://github.com/zamotkin)"
  125. ],
  126. "license": "BSD-2-Clause",
  127. "funding": {
  128. "type": "opencollective",
  129. "url": "https://opencollective.com/javascript-obfuscator"
  130. },
  131. "collective": {
  132. "url": "https://opencollective.com/javascript-obfuscator"
  133. }
  134. }