added package.json
authorMihai Bazon <mihai@bazon.net>
Wed, 3 Oct 2012 10:19:00 +0000 (13:19 +0300)
committerMihai Bazon <mihai@bazon.net>
Wed, 3 Oct 2012 10:38:39 +0000 (13:38 +0300)
package.json [new file with mode: 0644]

diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..db49c77
--- /dev/null
@@ -0,0 +1,25 @@
+{
+    "name": "uglify-js2",
+    "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
+    "homepage": "http://lisperator.net/uglifyjs",
+    "main": "tools/node.js",
+    "version": "2.0.0",
+    "engines": { "node" : ">=0.4.0" },
+    "maintainers": [{
+        "name": "Mihai Bazon",
+        "email": "mihai.bazon@gmail.com",
+        "web": "http://lisperator.net/"
+    }],
+    "repositories": [{
+        "type": "git",
+        "url": "https://github.com/mishoo/UglifyJS2.git"
+    }],
+    "dependencies": {
+        "source-map" : "*",
+        "optimist"   : "*"
+    },
+    "bin": {
+        "uglifyjs2" : "bin/uglifyjs2"
+    },
+    "scripts": {"test": "node test/run-tests.js"}
+}