package.json 871 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.5.1",
  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. "esprima": "^2.7.2",
  17. "escodegen": "^1.8.0",
  18. "estraverse": "^4.2.0",
  19. "typescript": "^1.8.10"
  20. },
  21. "devDependencies": {
  22. "lite-server": "^1.3.1",
  23. "typings": "^0.8.1"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  28. },
  29. "scripts": {
  30. "tsc": "tsc",
  31. "tsc:w": "tsc -w",
  32. "lite": "lite-server",
  33. "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
  34. "tests": "node dist/tests/dev-test.js"
  35. },
  36. "author": {
  37. "name": "sanex3339"
  38. },
  39. "license": "ISC"
  40. }