forked from maxtaco/coffee-script
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "iced-coffee-script",
"description": "IcedCoffeeScript",
"author": "Jeremy Ashkenas + Maxwell Krohn",
"version": "1.8.0-c",
"keywords": [
"javascript",
"language",
"coffeescript",
"compiler"
],
"license": "MIT",
"engines": {
"node": ">=0.8.0"
},
"directories": {
"lib": "./lib/coffee-script"
},
"main": "./lib/coffee-script/coffee-script",
"bin": {
"iced": "./bin/coffee",
"icake": "./bin/cake"
},
"scripts": {
"test": "node ./bin/cake test",
"test-harmony": "node --harmony ./bin/cake test"
},
"homepage": "http://maxtaco.github.io/coffee-script",
"bugs": "https://github.com/maxtaco/coffee-script/issues",
"repository": {
"type": "git",
"url": "git://github.com/maxtaco/coffee-script.git"
},
"devDependencies": {
"uglify-js": "~2.2",
"jison": ">=0.2.0",
"highlight.js": "~8.0.0",
"underscore": "~1.5.2",
"docco": "~0.6.2",
"browserify": "^4.1.8"
},
"dependencies": {
"docco": "~0.6.2",
"iced-runtime": ">=0.0.1",
"mkdirp": "~0.3.5"
}
}