-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Specify the files to install in package.json * Add missing properties * Follow `npm init`'s scheme
- Loading branch information
1 parent
763bd36
commit efea52a
Showing
3 changed files
with
49 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/node_modules/ | ||
/npm-debug.log | ||
tmp/ | ||
node_modules/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,51 @@ | ||
{ | ||
"name": "uglify-js", | ||
"description": "JavaScript parser, mangler/compressor and beautifier toolkit", | ||
"homepage": "http://lisperator.net/uglifyjs", | ||
"main": "tools/node.js", | ||
"version": "2.4.20", | ||
"engines": { "node" : ">=0.4.0" }, | ||
"maintainers": [{ | ||
"name": "Mihai Bazon", | ||
"email": "[email protected]", | ||
"web": "http://lisperator.net/" | ||
}], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/mishoo/UglifyJS2.git" | ||
}, | ||
"dependencies": { | ||
"async" : "~0.2.6", | ||
"source-map" : "0.1.34", | ||
"yargs": "~3.5.4", | ||
"uglify-to-browserify": "~1.0.0" | ||
}, | ||
"devDependencies": { | ||
"acorn": "~0.6.0", | ||
"escodegen": "~1.3.3", | ||
"esfuzz": "~0.3.1", | ||
"estraverse": "~1.5.1" | ||
}, | ||
"browserify": { | ||
"transform": [ "uglify-to-browserify" ] | ||
}, | ||
"bin": { | ||
"uglifyjs" : "bin/uglifyjs" | ||
}, | ||
"license": "BSD", | ||
"scripts": {"test": "node test/run-tests.js"} | ||
"homepage": "http://lisperator.net/uglifyjs", | ||
"author": "Mihai Bazon <[email protected]> (http://lisperator.net/)", | ||
"license": "BSD", | ||
"version": "2.4.20", | ||
"engines": { | ||
"node": ">=0.4.0" | ||
}, | ||
"maintainers": [ | ||
"Mihai Bazon <[email protected]> (http://lisperator.net/)" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/mishoo/UglifyJS2.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/mishoo/UglifyJS2/issues" | ||
}, | ||
"main": "tools/node.js", | ||
"bin": { | ||
"uglifyjs": "bin/uglifyjs" | ||
}, | ||
"files": [ | ||
"bin", | ||
"lib", | ||
"tools", | ||
"LICENSE" | ||
], | ||
"dependencies": { | ||
"async": "~0.2.6", | ||
"source-map": "0.1.34", | ||
"uglify-to-browserify": "~1.0.0", | ||
"yargs": "~3.5.4" | ||
}, | ||
"devDependencies": { | ||
"acorn": "~0.6.0", | ||
"escodegen": "~1.3.3", | ||
"esfuzz": "~0.3.1", | ||
"estraverse": "~1.5.1" | ||
}, | ||
"browserify": { | ||
"transform": [ | ||
"uglify-to-browserify" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "node test/run-tests.js" | ||
} | ||
} |