package.json 741 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.1.5",
  4. "description": "JavaScript obfuscator",
  5. "main": "index.js",
  6. "dependencies": {
  7. "esprima": "^2.7.2",
  8. "escodegen": "^1.8.0",
  9. "estraverse": "^4.2.0",
  10. "typescript": "^1.8.10"
  11. },
  12. "devDependencies": {
  13. "lite-server": "^1.3.1",
  14. "typings": "^0.8.1"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  19. },
  20. "scripts": {
  21. "tsc": "tsc",
  22. "tsc:w": "tsc -w",
  23. "lite": "lite-server",
  24. "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
  25. "postinstall": "typings install",
  26. "test": "node tests/dev-test.js"
  27. },
  28. "author": {
  29. "name": "sanex3339"
  30. },
  31. "license": "ISC"
  32. }