-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"title": "Js2Coffee",
"name": "js2coffee",
"version": "0.3.5",
"description": "JavaScript to CoffeeScript compiler",
"homepage": "http://js2coffee.org",
"license": {
"type": "MIT"
},
"keywords": [
"javascript",
"coffeescript",
"language",
"compiler"
],
"badges": {
"travis": true,
"npm": true,
"david": true,
"daviddev": true
},
"author": "2011+ 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)",
"Andrej Mihajlov (https://github.com/pronebird)"
],
"contributors": [
"Andrej Mihajlov (https://github.com/pronebird)",
"Anton Wilhelm <timaschew@gmail.com> (https://github.com/timaschew)",
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)",
"clkao (https://github.com/clkao)",
"codelahoma (https://github.com/codelahoma)",
"dburt (https://github.com/dburt)",
"ForbesLindesay (https://github.com/ForbesLindesay)",
"gabipurcaru (https://github.com/gabipurcaru)",
"grandquista (https://github.com/grandquista)",
"joelvh (https://github.com/joelvh)",
"karlbohlmark (https://github.com/karlbohlmark)",
"MichaelBlume (https://github.com/MichaelBlume)",
"michaelficarra (https://github.com/michaelficarra)",
"MissingHandle (https://github.com/MissingHandle)",
"nateschiffer (https://github.com/nateschiffer)",
"nilbus (https://github.com/nilbus)",
"rstacruz (https://github.com/rstacruz)",
"thoka (https://github.com/thoka)",
"tricknotes (https://github.com/tricknotes)",
"tsantef (https://github.com/tsantef)",
"twilson63 (https://github.com/twilson63)",
"wlaurance (https://github.com/wlaurance)"
],
"bugs": {
"url": "https://github.com/js2coffee/js2coffee/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/js2coffee/js2coffee.git"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"coffee-script": "~1.7.1",
"file": "~0.2.1",
"nopt": "~3.0.1",
"underscore": "~1.6.0"
},
"devDependencies": {
"ansidiff": "~1.0.0",
"docpad": "~6.69.0",
"docpad-plugin-browserifydocs": "~2.2.0",
"docpad-plugin-coffeescript": "~2.4.0",
"docpad-plugin-eco": "^2.1.0",
"docpad-plugin-ghpages": "~2.4.3",
"docpad-plugin-raw": "~2.3.2",
"docpad-plugin-uglify": "~2.4.0",
"glob": "~4.0.3",
"joe": "~1.5.0",
"joe-reporter-console": "^1.2.1",
"projectz": "~0.3.11"
},
"directories": {
"lib": "./out/lib"
},
"bin": {
"js2coffee": "./out/bin/js2coffee"
},
"scripts": {
"preinstall": "node ./cyclic.js",
"watch": "./node_modules/.bin/cake watch",
"compile": "./node_modules/.bin/cake compile",
"test": "node ./out/test/everything.js"
},
"browser": "./out/lib/browser.js",
"main": "./out/lib/js2coffee",
"cakeConfiguration": {
"DOCPAD_SRC_PATH": "src"
}
}