| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | {  "name": "javascript-obfuscator",  "version": "0.7.0-dev.2",  "description": "JavaScript obfuscator",  "keywords": [    "obfuscator",    "obfuscation",    "uglify",    "crush",    "code protection",    "javascript obfuscator",    "js obfuscator"  ],  "engines": {    "node": ">=0.12.0",    "iojs": ">=1.0.0"  },  "main": "dist/index.js",  "bin": {    "javascript-obfuscator": "./bin/javascript-obfuscator.js"  },  "dependencies": {    "babel-polyfill": "^6.9.1",    "chance": "^1.0.4",    "class-validator": "^0.5.0",    "commander": "^2.9.0",    "escodegen": "^1.8.0",    "esprima": "^2.7.2",    "estraverse": "^4.2.0",    "format-unicorn": "^1.1.0",    "mkdirp": "^0.5.1",    "source-map-support": "^0.4.2"  },  "devDependencies": {    "@types/chai": "^3.4.29",    "@types/chance": "^0.7.28",    "@types/commander": "^2.3.29",    "@types/escodegen": "0.0.1",    "@types/esprima": "^2.1.28",    "@types/estraverse": "0.0.1",    "@types/format-unicorn": "0.0.28",    "@types/joi": "^6.5.28",    "@types/mkdirp": "^0.3.28",    "@types/mocha": "^2.2.28",    "@types/node": "^4.0.30",    "@types/sinon": "^1.16.26",    "babel-cli": "^6.11.4",    "babel-loader": "^6.2.4",    "babel-preset-es2015": "^6.9.0",    "chai": "^3.5.0",    "chai-members-deep": "^1.1.0",    "coveralls": "^2.11.12",    "istanbul": "1.1.0-alpha.1",    "mocha": "^3.0.0-2",    "sinon": "^2.0.0-pre.2",    "ts-loader": "^0.8.2",    "ts-node": "^1.2.1",    "tslint": "^3.14.0",    "typescript": "^2.0.0",    "webpack": "^2.1.0-beta.20",    "webpack-node-externals": "^1.3.2"  },  "repository": {    "type": "git",    "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"  },  "scripts": {    "start": "scripts/start",    "webpack": "scripts/webpack",    "build": "scripts/build",    "watch": "scripts/watch",    "test:compile": "scripts/test-compile",    "test:dev": "scripts/test-dev",    "test:full": "scripts/test-full",    "test:coveralls": "scripts/test-coveralls",    "test:mocha": "scripts/test-mocha",    "test:removeTmpDir": "scripts/test-remove-tmp-dir",    "test": "scripts/test",    "tslint": "scripts/tslint",    "travis": "scripts/travis"  },  "author": {    "name": "Timofey Kachalov"  },  "license": "BSD-2-Clause"}
 |