| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | {  "name": "javascript-obfuscator",  "version": "0.6.0",  "description": "JavaScript obfuscator",  "keywords": [    "obfuscator",    "obfuscation",    "uglify",    "crush",    "code protection",    "javascript obfuscator",    "js obfuscator"  ],  "main": "dist/index.js",  "bin": {    "javascript-obfuscator": "./bin/javascript-obfuscator.js"  },  "dependencies": {    "babel-polyfill": "^6.9.1",    "chance": "^1.0.3",    "commander": "^2.9.0",    "escodegen": "^1.8.0",    "esprima": "^2.7.2",    "estraverse": "^4.2.0",    "source-map-support": "^0.4.0"  },  "devDependencies": {    "babel-cli": "^6.9.0",    "babel-loader": "^6.2.4",    "babel-preset-es2015": "^6.9.0",    "chai": "^3.5.0",    "coveralls": "^2.11.9",    "istanbul": "^1.0.0-alpha.2",    "lite-server": "^1.3.1",    "mocha": "^2.5.3",    "ts-loader": "^0.8.2",    "ts-node": "^0.9.1",    "tslint": "^3.11.0",    "typescript": "^1.8.10",    "typings": "^0.8.1",    "webpack": "^2.1.0-beta.12",    "webpack-node-externals": "^1.2.0"  },  "repository": {    "type": "git",    "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"  },  "scripts": {    "start": "npm run watch",    "webpack": "node_modules/.bin/webpack",    "build": "npm run webpack && npm run tslint && npm test",    "watch": "node_modules/.bin/webpack --watch",    "test:compile": "node_modules/.bin/tsc -p tsconfig-test.json",    "test:dev": "node test/dev/test.js",    "test:full": "npm run test:compile && node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test-tmp/test/**/**.spec.js && npm run test:removeTestTmpDir",    "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",    "test:mocha": "npm run test:compile && node_modules/.bin/mocha test-tmp/test/**/**.spec.js  && npm run test:removeTestTmpDir",    "test:removeTestTmpDir": "rm -rf test-tmp",    "test": "npm run test:dev && npm run test:full",    "tslint": "tslint src/*.ts",    "travis": "npm run tslint && npm test",    "typings": "node_modules/.bin/typings install"  },  "author": {    "name": "Timofey Kachalov"  },  "license": "BSD-2-Clause"}
 |