package.json 1.5 KB

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