-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 934 Bytes
/
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
{
"name": "litescript",
"version": "0.8.10",
"description": "LiteScript is a literate, highly readable, compile-to-js and compile-to-c language",
"keywords": [
"alt-js",
"language",
"simple",
"PEG",
"compiler",
"fast",
"compile-to-js",
"compile-to-C"
],
"author": {
"name": "Lucio M. Tato",
"email": "[email protected]",
"url": "http://github.com/luciotato"
},
"homepage": "http://github.com/luciotato/litescript",
"repository": {
"type": "git",
"url": "git://github.com/luciotato/litescript.git"
},
"bugs": "http://github.com/luciotato/litescript/issues",
"license": "AGPL",
"engines": {
"node": ">= 0.8.0"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/Compiler.js",
"bin": {
"lite": "./lib/lite"
},
"scripts": {
"test": "bash test.sh",
"build-0.8": "cd devel/util ; ./release 0.8"
},
"preferGlobal": true
}