package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. "source-map-support": "^0.4.0"
  26. },
  27. "devDependencies": {
  28. "babel-cli": "^6.9.0",
  29. "babel-loader": "^6.2.4",
  30. "babel-preset-es2015": "^6.9.0",
  31. "chai": "^3.5.0",
  32. "coveralls": "^2.11.9",
  33. "istanbul": "^1.0.0-alpha.2",
  34. "lite-server": "^1.3.1",
  35. "mocha": "^2.5.3",
  36. "ts-loader": "^0.8.2",
  37. "ts-node": "^0.9.1",
  38. "tslint": "^3.11.0",
  39. "typescript": "^1.8.10",
  40. "typings": "^0.8.1",
  41. "webpack": "^2.1.0-beta.12",
  42. "webpack-node-externals": "^1.2.0"
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
  47. },
  48. "scripts": {
  49. "start": "npm run watch",
  50. "webpack": "node_modules/.bin/webpack",
  51. "build": "npm run webpack && npm run tslint && npm test",
  52. "watch": "node_modules/.bin/webpack --watch",
  53. "test:compile": "node_modules/.bin/tsc -p tsconfig-test.json",
  54. "test:dev": "node test/dev/test.js",
  55. "test:full": "npm run test:compile && node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
  56. "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",
  57. "test:mocha": "npm run test:compile && node_modules/.bin/mocha test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",
  58. "test:removeTestTmpDir": "rm -rf test-tmp",
  59. "test": "npm run test:dev && npm run test:full",
  60. "tslint": "tslint src/*.ts",
  61. "travis": "npm run tslint && npm test",
  62. "typings": "node_modules/.bin/typings install"
  63. },
  64. "author": {
  65. "name": "Timofey Kachalov"
  66. },
  67. "license": "BSD-2-Clause"
  68. }