package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "2.11.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. "@javascript-obfuscator/escodegen": "2.1.1",
  25. "@nuxtjs/opencollective": "0.3.2",
  26. "acorn": "8.1.0",
  27. "assert": "2.0.0",
  28. "chalk": "4.1.0",
  29. "chance": "1.1.7",
  30. "class-validator": "0.13.1",
  31. "commander": "7.2.0",
  32. "eslint-scope": "5.1.1",
  33. "estraverse": "5.2.0",
  34. "fast-deep-equal": "3.1.3",
  35. "inversify": "5.0.5",
  36. "js-string-escape": "1.0.1",
  37. "md5": "2.3.0",
  38. "mkdirp": "1.0.4",
  39. "multimatch": "5.0.0",
  40. "process": "0.11.10",
  41. "reflect-metadata": "0.1.13",
  42. "source-map-support": "0.5.19",
  43. "string-template": "1.0.0",
  44. "stringz": "2.1.0",
  45. "tslib": "2.1.0"
  46. },
  47. "devDependencies": {
  48. "@istanbuljs/nyc-config-typescript": "1.0.1",
  49. "@types/chai": "4.2.16",
  50. "@types/chance": "1.1.1",
  51. "@types/escodegen": "0.0.6",
  52. "@types/eslint-scope": "3.7.0",
  53. "@types/estraverse": "5.1.0",
  54. "@types/estree": "0.0.47",
  55. "@types/js-string-escape": "1.0.0",
  56. "@types/md5": "2.3.0",
  57. "@types/mkdirp": "1.0.1",
  58. "@types/mocha": "8.2.2",
  59. "@types/multimatch": "4.0.0",
  60. "@types/node": "14.14.37",
  61. "@types/rimraf": "3.0.0",
  62. "@types/sinon": "9.0.11",
  63. "@types/string-template": "1.0.2",
  64. "@types/webpack-env": "1.16.0",
  65. "@typescript-eslint/eslint-plugin": "4.20.0",
  66. "@typescript-eslint/parser": "4.20.0",
  67. "chai": "4.3.4",
  68. "chai-exclude": "2.0.2",
  69. "cross-env": "7.0.3",
  70. "eslint": "7.23.0",
  71. "eslint-plugin-import": "2.22.1",
  72. "eslint-plugin-jsdoc": "32.3.0",
  73. "eslint-plugin-no-null": "1.0.2",
  74. "eslint-plugin-prefer-arrow": "1.2.3",
  75. "eslint-plugin-unicorn": "29.0.0",
  76. "fork-ts-checker-notifier-webpack-plugin": "3.0.0",
  77. "fork-ts-checker-webpack-plugin": "6.2.0",
  78. "mocha": "8.3.2",
  79. "nyc": "15.1.0",
  80. "pjson": "1.0.9",
  81. "pre-commit": "1.2.2",
  82. "rimraf": "3.0.2",
  83. "sinon": "10.0.0",
  84. "threads": "1.6.3",
  85. "ts-loader": "8.1.0",
  86. "ts-node": "9.1.1",
  87. "typescript": "4.2.3",
  88. "webpack": "5.30.0",
  89. "webpack-cli": "4.6.0",
  90. "webpack-node-externals": "2.5.2"
  91. },
  92. "repository": {
  93. "type": "git",
  94. "url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
  95. },
  96. "homepage": "https://obfuscator.io/",
  97. "scripts": {
  98. "start": "yarn run watch",
  99. "webpack:prod": "webpack --config ./webpack/webpack.node.config.js --config ./webpack/webpack.browser.config.js --mode production",
  100. "build": "yarn run webpack:prod && yarn run eslint && yarn test",
  101. "watch": "webpack --config ./webpack/webpack.node.config.js --mode development --watch",
  102. "test:dev": "ts-node --type-check test/dev/dev.ts",
  103. "test:devCompilePerformance": "ts-node test/dev/dev-compile-performance.ts",
  104. "test:devRuntimePerformance": "ts-node test/dev/dev-runtime-performance.ts",
  105. "test:full": "yarn run test:dev && yarn run test:mocha-coverage && yarn run test:mocha-memory-performance",
  106. "test:mocha": "mocha --require ts-node/register --require source-map-support/register test/index.spec.ts --exit",
  107. "test:mocha-coverage": "nyc --reporter text-summary --no-clean yarn run test:mocha",
  108. "test:mocha-coverage:report": "nyc report --reporter=lcov",
  109. "test:mocha-memory-performance": "cross-env NODE_OPTIONS=--max-old-space-size=220 mocha --require ts-node/register test/performance-tests/JavaScriptObfuscatorMemory.spec.ts",
  110. "test": "yarn run test:full",
  111. "eslint": "eslint src/**/*.ts",
  112. "git:addFiles": "git add .",
  113. "postinstall": "opencollective"
  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. }