forked from jashkenas/coffeescript
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "toffee-script",
"description": "CoffeeScript with asynchronous syntax and additional features",
"keywords": ["javascript", "language", "coffeescript", "compiler", "toffeescript", "asynchronous"],
"author": "Miao Jiang",
"version": "1.6.3-5",
"licenses": [{
"type": "MIT",
"url": "https://raw.github.com/jashkenas/coffee-script/master/LICENSE"
}],
"engines": {
"node": ">=0.8.0"
},
"directories" : {
"lib" : "./lib/coffee-script"
},
"main" : "./lib/coffee-script/coffee-script",
"bin": {
"toffee": "./bin/coffee",
"tcons": "./bin/cake"
},
"scripts": {
"test": "node ./bin/cake test"
},
"homepage": "https://github.com/jiangmiao/toffee-script",
"bugs": "https://github.com/jiangmiao/toffee-script/issues",
"repository": {
"type": "git",
"url": "git://github.com/jiangmiao/toffee-script.git"
},
"devDependencies": {
"uglify-js": "~2.2",
"jison": ">=0.2.0"
}
}