package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "2.6.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. "@nuxtjs/opencollective": "0.2.2",
  25. "acorn": "8.0.3",
  26. "assert": "^2.0.0",
  27. "chalk": "4.1.0",
  28. "chance": "1.1.7",
  29. "class-validator": "0.12.2",
  30. "commander": "6.1.0",
  31. "escodegen": "2.0.0",
  32. "eslint-scope": "5.1.1",
  33. "estraverse": "5.2.0",
  34. "eventemitter3": "4.0.7",
  35. "fast-deep-equal": "3.1.3",
  36. "inversify": "5.0.1",
  37. "js-string-escape": "1.0.1",
  38. "md5": "2.3.0",
  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. "stringz": "2.1.0",
  45. "tslib": "2.0.3"
  46. },
  47. "devDependencies": {
  48. "@istanbuljs/nyc-config-typescript": "1.0.1",
  49. "@types/chai": "4.2.13",
  50. "@types/chance": "1.1.0",
  51. "@types/escodegen": "0.0.6",
  52. "@types/eslint-scope": "3.7.0",
  53. "@types/estraverse": "5.1.0",
  54. "@types/estree": "0.0.45",
  55. "@types/js-string-escape": "1.0.0",
  56. "@types/md5": "2.2.0",
  57. "@types/mkdirp": "1.0.1",
  58. "@types/mocha": "8.0.3",
  59. "@types/multimatch": "4.0.0",
  60. "@types/node": "14.11.8",
  61. "@types/rimraf": "3.0.0",
  62. "@types/sinon": "9.0.8",
  63. "@types/string-template": "1.0.2",
  64. "@types/webpack-env": "1.15.3",
  65. "@typescript-eslint/eslint-plugin": "4.4.0",
  66. "@typescript-eslint/parser": "4.4.0",
  67. "chai": "4.2.0",
  68. "chai-exclude": "2.0.2",
  69. "coveralls": "3.1.0",
  70. "cross-env": "7.0.2",
  71. "eslint": "7.11.0",
  72. "eslint-plugin-import": "2.22.1",
  73. "eslint-plugin-jsdoc": "30.6.4",
  74. "eslint-plugin-no-null": "1.0.2",
  75. "eslint-plugin-prefer-arrow": "1.2.2",
  76. "eslint-plugin-unicorn": "22.0.0",
  77. "fork-ts-checker-notifier-webpack-plugin": "3.0.0",
  78. "fork-ts-checker-webpack-plugin": "5.2.0",
  79. "mocha": "8.1.3",
  80. "nyc": "15.1.0",
  81. "pjson": "1.0.9",
  82. "pre-commit": "1.2.2",
  83. "rimraf": "3.0.2",
  84. "sinon": "9.2.0",
  85. "threads": "1.6.3",
  86. "ts-loader": "8.0.4",
  87. "ts-node": "9.0.0",
  88. "typescript": "4.1.0-beta",
  89. "webpack": "5.0.0",
  90. "webpack-cli": "4.0.0",
  91. "webpack-node-externals": "2.5.2"
  92. },
  93. "repository": {
  94. "type": "git",
  95. "url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
  96. },
  97. "homepage": "https://obfuscator.io/",
  98. "scripts": {
  99. "start": "yarn run watch",
  100. "webpack:prod": "webpack --config ./webpack/webpack.node.config.js --config ./webpack/webpack.browser.config.js --mode production",
  101. "build": "yarn run webpack:prod && yarn run eslint && yarn test",
  102. "watch": "webpack --config ./webpack/webpack.node.config.js --mode development --watch",
  103. "test:dev": "ts-node --type-check test/dev/dev.ts",
  104. "test:devCompilePerformance": "ts-node test/dev/dev-compile-performance.ts",
  105. "test:devRuntimePerformance": "ts-node test/dev/dev-runtime-performance.ts",
  106. "test:full": "yarn run test:dev && yarn run test:mocha-coverage && yarn run test:mocha-memory-performance",
  107. "test:mocha": "mocha --require ts-node/register --require source-map-support/register test/index.spec.ts --exit",
  108. "test:mocha-coverage": "nyc --reporter text-summary --no-clean yarn run test:mocha",
  109. "test:mocha-coverage:report": "nyc report --reporter=text-lcov | coveralls",
  110. "test:mocha-memory-performance": "cross-env NODE_OPTIONS=--max-old-space-size=220 mocha --require ts-node/register test/performance-tests/JavaScriptObfuscatorMemory.spec.ts",
  111. "test": "yarn run test:full",
  112. "eslint": "eslint src/**/*.ts",
  113. "travis": "yarn run eslint && yarn run test",
  114. "git:addFiles": "git add .",
  115. "postinstall": "opencollective || exit 0"
  116. },
  117. "pre-commit": [
  118. "build",
  119. "git:addFiles"
  120. ],
  121. "author": {
  122. "name": "Timofey Kachalov"
  123. },
  124. "contributors": [
  125. "Timofey Kachalov (https://github.com/sanex3339)",
  126. "Dmitry Zamotkin (https://github.com/zamotkin)"
  127. ],
  128. "license": "BSD-2-Clause",
  129. "funding": {
  130. "type": "opencollective",
  131. "url": "https://opencollective.com/javascript-obfuscator"
  132. },
  133. "collective": {
  134. "url": "https://opencollective.com/javascript-obfuscator"
  135. }
  136. }