package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "bin": {
  16. "javascript-obfuscator": "./bin/javascript-obfuscator.js"
  17. },
  18. "dependencies": {
  19. "babel-polyfill": "^6.9.1",
  20. "chance": "^1.0.3",
  21. "commander": "^2.9.0",
  22. "escodegen": "^1.8.0",
  23. "esprima": "^2.7.2",
  24. "estraverse": "^4.2.0",
  25. "mkdirp": "^0.5.1",
  26. "source-map-support": "^0.4.0"
  27. },
  28. "devDependencies": {
  29. "babel-cli": "^6.9.0",
  30. "babel-loader": "^6.2.4",
  31. "babel-preset-es2015": "^6.9.0",
  32. "chai": "^3.5.0",
  33. "coveralls": "^2.11.9",
  34. "istanbul": "1.1.0-alpha.1",
  35. "lite-server": "^1.3.1",
  36. "mocha": "^2.5.3",
  37. "ts-loader": "^0.8.2",
  38. "ts-node": "^0.9.1",
  39. "tslint": "^3.12.1",
  40. "typescript": "^1.8.10",
  41. "typings": "^0.8.1",
  42. "webpack": "^2.1.0-beta.12",
  43. "webpack-node-externals": "^1.2.0"
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  48. },
  49. "scripts": {
  50. "start": "npm run watch",
  51. "webpack": "node_modules/.bin/webpack",
  52. "build": "npm run webpack && npm run tslint && npm test",
  53. "watch": "node_modules/.bin/webpack --watch",
  54. "test:compile": "node_modules/.bin/tsc -p tsconfig-test.json",
  55. "test:dev": "node test/dev/test.js",
  56. "test:full": "npm run test:compile && node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
  57. "test:coveralls": "npm run test:compile && node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test-tmp/test/**/**.spec.js --report lcovonly && cat ./coverage/lcov.info | coveralls && npm run test:removeTestTmpDir",
  58. "test:mocha": "npm run test:compile && node_modules/.bin/mocha test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
  59. "test:removeTestTmpDir": "rm -rf test-tmp",
  60. "test": "npm run test:dev && npm run test:full",
  61. "tslint": "tslint src/**/*.ts",
  62. "travis": "npm run tslint && npm test",
  63. "typings": "node_modules/.bin/typings install"
  64. },
  65. "author": {
  66. "name": "Timofey Kachalov"
  67. },
  68. "license": "BSD-2-Clause"
  69. }