| 12345678910111213141516171819202122232425262728293031323334353637383940 | {  "name": "javascript-obfuscator",  "version": "0.5.4",  "description": "JavaScript obfuscator",  "keywords": [    "obfuscator",    "obfuscation",    "uglify",    "crush",    "code protection",    "javascript obfuscator",    "js obfuscator"  ],  "main": "dist/index.js",  "dependencies": {    "esprima": "^2.7.2",    "escodegen": "^1.8.0",    "estraverse": "^4.2.0",    "typescript": "^1.8.10"  },  "devDependencies": {    "lite-server": "^1.3.1",    "typings": "^0.8.1"  },  "repository": {    "type": "git",    "url": "git+https://github.com/sanex3339/javascript-obfuscator.git"  },  "scripts": {    "tsc": "tsc",    "tsc:w": "tsc -w",    "lite": "lite-server",    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",    "tests": "node dist/tests/dev-test.js"  },  "author": {    "name": "sanex3339"  },  "license": "ISC"}
 |