package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.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. "main": "dist/index.js",
  15. "dependencies": {
  16. "chance": "^1.0.3",
  17. "escodegen": "^1.8.0",
  18. "esprima": "^2.7.2",
  19. "estraverse": "^4.2.0"
  20. },
  21. "devDependencies": {
  22. "babel-cli": "^6.9.0",
  23. "babel-loader": "^6.2.4",
  24. "babel-polyfill": "^6.9.1",
  25. "babel-preset-es2015": "^6.9.0",
  26. "chai": "^3.5.0",
  27. "lite-server": "^1.3.1",
  28. "mocha": "^2.5.3",
  29. "source-map-support": "^0.4.0",
  30. "ts-loader": "^0.8.2",
  31. "ts-node": "^0.9.1",
  32. "typescript": "^1.8.10",
  33. "typings": "^0.8.1",
  34. "webpack": "^2.1.0-beta.12",
  35. "webpack-node-externals": "^1.2.0"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  40. },
  41. "scripts": {
  42. "tsc": "tsc",
  43. "tsc:w": "tsc -w",
  44. "webpack": "node_modules/.bin/webpack",
  45. "watch": "node_modules/.bin/webpack --watch",
  46. "lite": "lite-server",
  47. "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
  48. "test:dev": "node test/dev/test.js",
  49. "test:mocha": "mocha --require ts-node/register test/**/*.spec.ts",
  50. "test": "npm run test:dev && npm run test:mocha",
  51. "typings": "node_modules/.bin/typings install"
  52. },
  53. "author": {
  54. "name": "Timofey Kachalov"
  55. },
  56. "license": "BSD-2-Clause"
  57. }