forked from gkz/LiveScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
58
59
60
61
62
63
{
"name": "AliveScript",
"version": "1.2.7",
"description": "AliveScript is a language which modifies LiveScript (soon: coffee-script, coco, ???) first by allowing transformations on the AST, and then again on the resulting JavaScript usiing [http://graspjs.com/](grasp).",
"keywords": [
"language",
"compiler",
"javascript",
"coco",
"coffeescript",
"livescript",
"grasp"
],
"author": "duralog <[email protected]>",
"homepage": "http://livescript.net",
"bugs": "https://github.com/duralog/AliveScript/issues",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/duralog/AliveScript/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",
"all": "make force && make test"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/duralog/AliveScript.git"
},
"dependencies": {
"prelude-ls": "~1.1.0",
"optionator": "~0.3.0",
"grasp": "~0.2.1"
},
"devDependencies": {
"jison": "0.2.1",
"uglify-js": "~2.4.12",
"istanbul": "~0.2.4",
"browserify": "~3.0.0"
}
}