forked from gkz/LiveScript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "livescript",
"version": "1.6.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",
"functional"
],
"author": "George Zahariev <z@georgezahariev.com>",
"homepage": "http://livescript.net",
"bugs": "https://github.com/gkz/LiveScript/issues",
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"main": "./lib/",
"browser": "./lib/browser.js",
"bin": {
"lsc": "./bin/lsc"
},
"scripts": {
"pretest": "make force && make force",
"test": "make test",
"posttest": "git checkout -- lib"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/gkz/LiveScript.git"
},
"dependencies": {
"prelude-ls": "~1.2.1",
"optionator": "~0.9.1",
"source-map": "=0.6.1",
"source-map-support": "=0.5.6"
},
"devDependencies": {
"jison": "0.4.18",
"uglify-js": "~2.6.4",
"istanbul": "~0.4.3",
"browserify": "^13.3.0"
}
}