Merge pull request #1292 from clkao/master

Add LiveScript 1.1.1
This commit is contained in:
Lachlan Collins
2013-05-14 19:54:39 -07:00
2 changed files with 63 additions and 0 deletions
File diff suppressed because one or more lines are too long
+58
View File
@@ -0,0 +1,58 @@
{
"name": "livescript",
"filename": "livescript.min.js",
"version": "1.1.1",
"description": "LiveScript is a language which compiles to JavaScript. It has a straightforward mapping to JavaScript and allows you to write expressive code devoid of repetitive boilerplate. While LiveScript adds many features to assist in functional style programming, it also has many improvements for object oriented and imperative programming.",
"keywords": [
"language",
"compiler",
"coffeescript",
"coco",
"javascript"
],
"author": "George Zahariev <z@georgezahariev.com>",
"homepage": "http://livescript.net",
"bugs": "https://github.com/gkz/LiveScript/issues",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/gkz/LiveScript/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"main": "./lib/livescript",
"bin": {
"livescript": "./bin/livescript",
"lsc": "./bin/lsc",
"slake": "./bin/slake"
},
"scripts": {
"pretest": "bin/slake build && bin/slake build:parser && bin/slake build",
"test": "bin/slake test",
"posttest": "git checkout -- lib"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/gkz/LiveScript.git"
},
"dependencies": {
"prelude-ls": ">= 0.6.0"
},
"devDependencies": {
"jison": "0.2.1",
"uglify-js": "1.3.3"
}
}