package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.7.0-dev.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": ">=0.12.0",
  16. "iojs": ">=1.0.0"
  17. },
  18. "main": "dist/index.js",
  19. "bin": {
  20. "javascript-obfuscator": "./bin/javascript-obfuscator.js"
  21. },
  22. "dependencies": {
  23. "babel-polyfill": "^6.9.1",
  24. "chance": "^1.0.3",
  25. "class-validator": "^0.5.0-alpha.3",
  26. "commander": "^2.9.0",
  27. "escodegen": "^1.8.0",
  28. "esprima": "^2.7.2",
  29. "estraverse": "^4.2.0",
  30. "mkdirp": "^0.5.1",
  31. "source-map-support": "^0.4.1"
  32. },
  33. "devDependencies": {
  34. "@types/chai": "^3.4.27-alpha",
  35. "@types/chance": "^0.7.27-alpha",
  36. "@types/commander": "^2.3.28",
  37. "@types/esprima": "^2.1.27-alpha",
  38. "@types/joi": "^6.5.27-alpha",
  39. "@types/mkdirp": "^0.3.27-alpha",
  40. "@types/mocha": "^2.2.26-alpha",
  41. "@types/node": "^4.0.28-alpha",
  42. "@types/sinon": "^1.16.25-alpha",
  43. "babel-cli": "^6.10.1",
  44. "babel-loader": "^6.2.4",
  45. "babel-preset-es2015": "^6.9.0",
  46. "chai": "^3.5.0",
  47. "chai-members-deep": "^1.1.0",
  48. "coveralls": "^2.11.9",
  49. "istanbul": "1.1.0-alpha.1",
  50. "mocha": "^2.5.3",
  51. "sinon": "^1.17.4",
  52. "ts-loader": "^0.8.2",
  53. "ts-node": "^0.9.3",
  54. "tslint": "^3.13.0",
  55. "typescript": "^2.0.0",
  56. "typings": "^1.3.1",
  57. "webpack": "^2.1.0-beta.15",
  58. "webpack-node-externals": "^1.2.0"
  59. },
  60. "repository": {
  61. "type": "git",
  62. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  63. },
  64. "scripts": {
  65. "start": "scripts/start",
  66. "webpack": "scripts/webpack",
  67. "build": "scripts/build",
  68. "watch": "scripts/watch",
  69. "test:compile": "scripts/test-compile",
  70. "test:dev": "scripts/test-dev",
  71. "test:full": "scripts/test-full",
  72. "test:coveralls": "scripts/test-coveralls",
  73. "test:mocha": "scripts/test-mocha",
  74. "test:removeTmpDir": "scripts/test-remove-tmp-dir",
  75. "test": "scripts/test",
  76. "tslint": "scripts/tslint",
  77. "travis": "scripts/travis",
  78. "typings": "scripts/typings"
  79. },
  80. "author": {
  81. "name": "Timofey Kachalov"
  82. },
  83. "license": "BSD-2-Clause"
  84. }