package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.24.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.1.0",
  27. "chalk": "3.0.0",
  28. "chance": "1.1.4",
  29. "class-validator": "0.11.0",
  30. "commander": "4.1.0",
  31. "escodegen": "1.12.1",
  32. "eslint-scope": "^5.0.0",
  33. "estraverse": "4.3.0",
  34. "eventemitter3": "4.0.0",
  35. "inversify": "5.0.1",
  36. "js-string-escape": "1.0.1",
  37. "md5": "2.2.1",
  38. "mkdirp": "0.5.1",
  39. "multimatch": "4.0.0",
  40. "reflect-metadata": "0.1.13",
  41. "source-map-support": "0.5.16",
  42. "string-template": "1.0.0",
  43. "tslib": "1.10.0"
  44. },
  45. "devDependencies": {
  46. "@types/chai": "4.2.7",
  47. "@types/chance": "1.0.8",
  48. "@types/escodegen": "0.0.6",
  49. "@types/eslint-scope": "^3.7.0",
  50. "@types/estraverse": "0.0.6",
  51. "@types/estree": "0.0.42",
  52. "@types/md5": "2.1.33",
  53. "@types/mkdirp": "0.5.2",
  54. "@types/mocha": "5.2.7",
  55. "@types/multimatch": "4.0.0",
  56. "@types/node": "12.12.14",
  57. "@types/rimraf": "2.0.3",
  58. "@types/sinon": "7.5.1",
  59. "@types/string-template": "1.0.2",
  60. "@types/webpack-env": "1.15.0",
  61. "awesome-typescript-loader": "5.2.1",
  62. "chai": "4.2.0",
  63. "coveralls": "3.0.9",
  64. "mocha": "7.0.0",
  65. "nyc": "15.0.0",
  66. "pjson": "1.0.9",
  67. "pre-commit": "1.2.2",
  68. "rimraf": "3.0.0",
  69. "sinon": "8.0.4",
  70. "threads": "1.0.0",
  71. "ts-node": "6.1.0",
  72. "tslint": "5.20.1",
  73. "tslint-eslint-rules": "5.4.0",
  74. "tslint-language-service": "0.9.9",
  75. "tslint-microsoft-contrib": "6.2.0",
  76. "tslint-webpack-plugin": "1.2.2",
  77. "typescript": "3.7.4",
  78. "webpack": "4.41.5",
  79. "webpack-cli": "3.3.10",
  80. "webpack-node-externals": "1.7.2"
  81. },
  82. "repository": {
  83. "type": "git",
  84. "url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
  85. },
  86. "scripts": {
  87. "start": "scripts/start",
  88. "webpack:prod": "scripts/webpack-prod",
  89. "webpack:dev": "scripts/webpack-dev",
  90. "build": "scripts/build",
  91. "watch": "scripts/watch",
  92. "removeCacheDir": "scripts/remove-cache-dir",
  93. "test:compile": "scripts/test-compile",
  94. "test:dev": "scripts/test-dev",
  95. "test:devCompilePerformance": "scripts/test-dev-compile-performance",
  96. "test:devRuntimePerformance": "scripts/test-dev-runtime-performance",
  97. "test:full": "scripts/test-full",
  98. "test:coveralls": "scripts/test-coveralls",
  99. "test:mocha": "scripts/test-mocha",
  100. "test:removeTmpDir": "scripts/test-remove-tmp-dir",
  101. "test": "scripts/test",
  102. "tslint": "scripts/tslint",
  103. "travis": "scripts/travis",
  104. "git:addFiles": "scripts/git-add-files",
  105. "postinstall": "opencollective || exit 0"
  106. },
  107. "pre-commit": [
  108. "build",
  109. "git:addFiles"
  110. ],
  111. "author": {
  112. "name": "Timofey Kachalov"
  113. },
  114. "contributors": [
  115. "Timofey Kachalov (https://github.com/sanex3339)",
  116. "Dmitry Zamotkin (https://github.com/zamotkin)"
  117. ],
  118. "license": "BSD-2-Clause",
  119. "collective": {
  120. "url": "https://opencollective.com/javascript-obfuscator"
  121. }
  122. }