package.json 576 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "javascript-obfuscator",
  3. "version": "0.0.9",
  4. "description": "JavaScript obfuscator",
  5. "main": "index.js",
  6. "dependencies": {
  7. },
  8. "devDependencies": {
  9. "lite-server": "^1.3.1",
  10. "tsd": "^0.6.5",
  11. "typescript": "*"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  16. },
  17. "scripts": {
  18. "tsc": "tsc",
  19. "tsc:w": "tsc -w",
  20. "lite": "lite-server",
  21. "start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
  22. },
  23. "author": {
  24. "name": "sanex3339"
  25. },
  26. "license": "ISC"
  27. }