forked from gkz/LiveScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 KB
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
58
59
60
{
"name": "LiveScript",
"version": "1.3.0",
"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",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/gkz/LiveScript/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"main": "./lib/",
"bin": {
"lsc": "./bin/lsc"
},
"scripts": {
"pretest": "make force && make force",
"test": "make test",
"test-harmony": "make test-harmony",
"posttest": "git checkout -- lib"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/gkz/LiveScript.git"
},
"dependencies": {
"prelude-ls": "~1.1.1",
"optionator": "~0.4.0"
},
"devDependencies": {
"jison": "0.2.1",
"uglify-js": "~2.4.15",
"istanbul": "~0.3.2",
"browserify": "~6.0.2"
}
}