-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.25 KB
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
{
"name": "rendr-cli",
"description": "A CLI for Rendr",
"version": "0.5.0",
"homepage": "https://github.com/technicolorenvy/rendr-cli",
"author": {
"name": "Joseph (Jos) Smith",
"email": "technicolorenvy@gmail.com",
"url": "@technicolorenvy"
},
"repository": {
"type": "git",
"url": "git://github.com/technicolorenvy/rendr-cli"
},
"bugs": {
"url": "https://github.com/technicolorenvy/rendr-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/technicolorenvy/rendr-cli/blob/master/LICENSE-MIT"
}
],
"main": "lib/rendr-cli",
"engines": {
"node": "> 0.6.0"
},
"scripts": {
"test": "mocha --reporter spec ./test --recursive",
"coffeeMaker": "node lib/translate.js coffeescript"
},
"dependencies": {
"commander": "1.2.x",
"colors": "*",
"async": "*",
"underscore": "1.4.x",
"walk": ">= 2.2",
"string": "1.4.x",
"i": "0.3.x",
"fs-extra": "*"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"js2coffee": "*"
},
"keywords": [
"Backbone",
"view",
"web",
"rendr",
"render",
"rendr-cli",
"render-cli"
],
"preferGlobal": "true",
"bin": {
"rendr" : "./lib/rendr-cli.js"
}
}