38 lines
843 B
JSON
38 lines
843 B
JSON
{
|
|
"name": "unreachable-branch-transform",
|
|
"version": "0.3.0",
|
|
"description": "Browserify transform to remove unreachable code",
|
|
"keywords": [
|
|
"browserify",
|
|
"browserify-transform",
|
|
"transform",
|
|
"minify",
|
|
"unreachable"
|
|
],
|
|
"homepage": "https://github.com/zertosh/unreachable-branch-transform",
|
|
"license": "MIT",
|
|
"author": "Andres Suarez <zertosh@gmail.com>",
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE",
|
|
"index.js",
|
|
"unreachableBranchTransformer.js"
|
|
],
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/zertosh/unreachable-branch-transform.git"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha test/*.js"
|
|
},
|
|
"dependencies": {
|
|
"esmangle-evaluator": "^1.0.0",
|
|
"recast": "^0.10.1",
|
|
"through2": "^0.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^2.1.0"
|
|
}
|
|
}
|