forked from gkz/LiveScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.ls
More file actions
50 lines (40 loc) · 1.23 KB
/
package.ls
File metadata and controls
50 lines (40 loc) · 1.23 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
name : \LiveScript
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