forked from js2coffee/js2coffee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.75 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
64
{
"name": "js2coffee",
"version": "0.2.7",
"description": "JavaScript to CoffeeScript compiler",
"homepage": "http://js2coffee.org",
"keywords": [
"javascript",
"coffeescript",
"language",
"compiler"
],
"author": "Rico Sta. Cruz <hi@ricostacruz.com> (http://ricostacruz.com)",
"maintainers": [
"Rico Sta. Cruz <hi@ricostacruz.com> (http://ricostacruz.com)",
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
"Anton Wilhelm <timaschew@gmail.com> (https://github.com/timaschew)"
],
"contributors": [
"Rico Sta. Cruz <hi@ricostacruz.com> (http://ricostacruz.com)",
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
"Anton Wilhelm <timaschew@gmail.com> (https://github.com/timaschew)"
],
"bugs": {
"url": "https://github.com/js2coffee/js2coffee/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/js2coffee/js2coffee.git"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"underscore": "~1.5.1",
"coffee-script": "~1.6.2",
"file": "~0.2.1",
"nopt": "~2.1.1"
},
"devDependencies": {
"glob": "~3.2.1",
"docpad": "~6.63.3",
"docpad-plugin-eco": "~2.0.3",
"docpad-plugin-coffeescript": "~2.2.3",
"docpad-plugin-uglify": "~2.4.0",
"joe": "~1.3.0",
"joe-reporter-console": "~1.2.1",
"ansidiff": "~1.0.0",
"browserify": "~3.18.0",
"uglify-js": "2.4.8"
},
"directories": {
"lib": "./out/lib"
},
"bin": {
"js2coffee": "./out/bin/js2coffee"
},
"scripts": {
"preinstall": "npm run-script ./cyclic.js",
"watch": "./node_modules/.bin/cake watch",
"compile": "./node_modules/.bin/cake compile",
"test": "./node_modules/.bin/cake test"
},
"main": "./out/lib/js2coffee"
}